diff --git a/src/win/window.rs b/src/win/window.rs index 0d937fc..47976ee 100644 --- a/src/win/window.rs +++ b/src/win/window.rs @@ -75,7 +75,7 @@ impl WindowHandle { pub fn close(&mut self) { if let Some(hwnd) = self.hwnd.take() { unsafe { - PostMessageW(hwnd, BV_WINDOW_MUST_CLOSE, 0, 0); + // PostMessageW(hwnd, BV_WINDOW_MUST_CLOSE, 0, 0); DestroyWindow(hwnd); } }