mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-23 13:51:30 +11:00
On Wayland, fix Window::is_decorated
with CSD
This commit is contained in:
parent
b166e1ff13
commit
89aa7cc06e
|
@ -52,6 +52,8 @@ fn main() {
|
||||||
} => {
|
} => {
|
||||||
if let Some(dir) = cursor_location {
|
if let Some(dir) = cursor_location {
|
||||||
let _res = window.drag_resize_window(dir);
|
let _res = window.drag_resize_window(dir);
|
||||||
|
} else if !window.is_decorated() {
|
||||||
|
let _res = window.drag_window();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
WindowEvent::KeyboardInput {
|
WindowEvent::KeyboardInput {
|
||||||
|
|
|
@ -384,7 +384,7 @@ impl WindowState {
|
||||||
.map(|configure| configure.decoration_mode == DecorationMode::Client)
|
.map(|configure| configure.decoration_mode == DecorationMode::Client)
|
||||||
.unwrap_or(false);
|
.unwrap_or(false);
|
||||||
if let Some(frame) = csd.then_some(self.frame.as_ref()).flatten() {
|
if let Some(frame) = csd.then_some(self.frame.as_ref()).flatten() {
|
||||||
frame.is_hidden()
|
!frame.is_hidden()
|
||||||
} else {
|
} else {
|
||||||
// Server side decorations.
|
// Server side decorations.
|
||||||
true
|
true
|
||||||
|
|
Loading…
Reference in a new issue