diff --git a/CHANGELOG.md b/CHANGELOG.md index bc12e1f..161c3da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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` type. This allows wrapper types to be written that hide the appit types. +- `WindowAttributes` now implement `Debug`. ## v0.1.1 (2023-12-18) diff --git a/src/window.rs b/src/window.rs index dd7b37b..65f218f 100644 --- a/src/window.rs +++ b/src/window.rs @@ -98,6 +98,7 @@ where /// that `parent_window` accepts a [`Window`] rather than relying on raw window /// handle. #[allow(clippy::struct_excessive_bools)] +#[derive(Debug)] pub struct WindowAttributes { /// The inner size of the window. pub inner_size: Option,