mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2025-01-11 13:31:29 +11:00
platform_impl/linux/x11: fix deadlock in fn set_fullscreen_inner (#1579)
Co-authored-by: Kirill Chibisov <contact@kchibisov.com>
This commit is contained in:
parent
03335cef85
commit
a4121a2c2e
|
@ -1,4 +1,5 @@
|
|||
# Unreleased
|
||||
- On X11, fix deadlock when calling `set_fullscreen_inner`.
|
||||
- On Web, prevent the webpage from scrolling when the user is focused on a winit canvas
|
||||
|
||||
- On Wayland, fix deadlock when calling to `set_inner_size` from a callback.
|
||||
|
|
|
@ -640,6 +640,7 @@ impl UnownedWindow {
|
|||
let flusher = self.set_fullscreen_hint(false);
|
||||
let mut shared_state_lock = self.shared_state.lock();
|
||||
if let Some(position) = shared_state_lock.restore_position.take() {
|
||||
drop(shared_state_lock);
|
||||
self.set_position_inner(position.0, position.1).queue();
|
||||
}
|
||||
Some(flusher)
|
||||
|
|
Loading…
Reference in a new issue