Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows: Delayed Message Boxes Fix. #1769

Merged
merged 7 commits into from Nov 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
@@ -1,5 +1,6 @@
# 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 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.
Expand Down
3 changes: 2 additions & 1 deletion src/platform_impl/windows/event_loop.rs
Expand Up @@ -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.
VZout marked this conversation as resolved.
Show resolved Hide resolved
commctrl::DefSubclassProc(window, msg, wparam, lparam)
}

winuser::WM_INPUT_DEVICE_CHANGE => {
Expand Down