mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2025-01-23 02:16:33 +11:00
Windows: Delayed Message Boxes Fix. (#1769)
This commit is contained in:
parent
165e51d850
commit
77d5d20391
2 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
||||||
# Unreleased
|
# Unreleased
|
||||||
|
|
||||||
|
- On Windows, fix bug causing message boxes to appear delayed.
|
||||||
- On Android, calling `WindowEvent::Focused` now works properly instead of always returning false.
|
- On Android, calling `WindowEvent::Focused` now works properly instead of always returning false.
|
||||||
- On Windows, fix alt-tab behaviour by removing borderless fullscreen "always on top" flag.
|
- On Windows, fix alt-tab behaviour by removing borderless fullscreen "always on top" flag.
|
||||||
- On Windows, fix bug preventing windows with transparency enabled from having fully-opaque regions.
|
- On Windows, fix bug preventing windows with transparency enabled from having fully-opaque regions.
|
||||||
|
|
|
@ -1973,7 +1973,8 @@ unsafe extern "system" fn thread_event_target_callback<T: 'static>(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
0
|
// Default WM_PAINT behaviour. This makes sure modals and popups are shown immediatly when opening them.
|
||||||
|
commctrl::DefSubclassProc(window, msg, wparam, lparam)
|
||||||
}
|
}
|
||||||
|
|
||||||
winuser::WM_INPUT_DEVICE_CHANGE => {
|
winuser::WM_INPUT_DEVICE_CHANGE => {
|
||||||
|
|
Loading…
Add table
Reference in a new issue