mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2025-01-24 02:46:33 +11:00
Comment to describe message order
This commit is contained in:
parent
8f03fb7a34
commit
d868510cc8
1 changed files with 2 additions and 0 deletions
|
@ -282,6 +282,8 @@ impl Drop for Window {
|
||||||
#[inline]
|
#[inline]
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
unsafe {
|
unsafe {
|
||||||
|
// We are sending WM_CLOSE, and our callback will process this by calling DefWindowProcW,
|
||||||
|
// which in turn will send a WM_DESTROY.
|
||||||
user32::PostMessageW(self.window.0, winapi::WM_CLOSE, 0, 0);
|
user32::PostMessageW(self.window.0, winapi::WM_CLOSE, 0, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue