Fix several crashes on Windows by heavily simplifying the event loop code (#1496)
This commit is contained in:
parent
26775fa0b6
commit
b4c6cdf9a3
4 changed files with 695 additions and 581 deletions
|
|
@ -80,7 +80,9 @@ bitflags! {
|
|||
/// window's state to match our stored state. This controls whether to accept those changes.
|
||||
const MARKER_RETAIN_STATE_ON_SIZE = 1 << 10;
|
||||
|
||||
const MINIMIZED = 1 << 11;
|
||||
const MARKER_IN_SIZE_MOVE = 1 << 11;
|
||||
|
||||
const MINIMIZED = 1 << 12;
|
||||
|
||||
const FULLSCREEN_AND_MASK = !(
|
||||
WindowFlags::DECORATIONS.bits |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue