Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
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.
Comment thread
VZout marked this conversation as resolved.
commctrl::DefSubclassProc(window, msg, wparam, lparam)
}

winuser::WM_INPUT_DEVICE_CHANGE => {
Expand Down