mirror of
https://github.com/danbulant/appit
synced 2026-07-03 01:50:37 +00:00
Debug for WindowAttributes
This commit is contained in:
parent
1e162ed8df
commit
8ca300682c
2 changed files with 2 additions and 0 deletions
|
|
@ -25,6 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
- `AsApplication` is a new trait that can be implemented to resolve to the `App`
|
- `AsApplication` is a new trait that can be implemented to resolve to the `App`
|
||||||
type. This allows wrapper types to be written that hide the appit types.
|
type. This allows wrapper types to be written that hide the appit types.
|
||||||
|
- `WindowAttributes` now implement `Debug`.
|
||||||
|
|
||||||
## v0.1.1 (2023-12-18)
|
## v0.1.1 (2023-12-18)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -98,6 +98,7 @@ where
|
||||||
/// that `parent_window` accepts a [`Window`] rather than relying on raw window
|
/// that `parent_window` accepts a [`Window`] rather than relying on raw window
|
||||||
/// handle.
|
/// handle.
|
||||||
#[allow(clippy::struct_excessive_bools)]
|
#[allow(clippy::struct_excessive_bools)]
|
||||||
|
#[derive(Debug)]
|
||||||
pub struct WindowAttributes {
|
pub struct WindowAttributes {
|
||||||
/// The inner size of the window.
|
/// The inner size of the window.
|
||||||
pub inner_size: Option<Size>,
|
pub inner_size: Option<Size>,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue