Enabling wayland-csd-adwaita by default

This commit is contained in:
Jonathan Johnson 2023-12-21 09:56:17 -08:00
parent 36a413865b
commit a10c250683
No known key found for this signature in database
GPG key ID: A66D6A34D6620579
2 changed files with 6 additions and 1 deletions

View file

@ -12,6 +12,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `UnwindSafe` is no longer required for `WindowBehavior` or
`WindowBehavior::Context`.
### Changed
- This crate's default features now include `wayland-csd-adwaita`. This enables
winit's built-in decoration drawing on Wayland.
## v0.1.1 (2023-12-18)
### Fixed

View file

@ -10,7 +10,7 @@ categories = ["gui"]
readme = "./README.md"
[features]
default = ["x11", "wayland", "wayland-dlopen"]
default = ["x11", "wayland", "wayland-dlopen", "wayland-csd-adwaita"]
wayland-csd-adwaita = ["winit/wayland-csd-adwaita"]
x11 = ["winit/x11"]
wayland = ["winit/wayland"]