Merge pull request #25259 from marcelofg55/captured_alt_f4
Fix ALT+F4 being ignored with MOUSE_MODE_CAPTURED on Windows
This commit is contained in:
commit
2c9536b655
1 changed files with 7 additions and 0 deletions
|
@ -805,6 +805,13 @@ LRESULT OS_Windows::WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
||||||
gr_mem = alt_mem;
|
gr_mem = alt_mem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (mouse_mode == MOUSE_MODE_CAPTURED) {
|
||||||
|
// When SetCapture is used, ALT+F4 hotkey is ignored by Windows, so handle it ourselves
|
||||||
|
if (wParam == VK_F4 && alt_mem && (uMsg == WM_KEYDOWN || uMsg == WM_SYSKEYDOWN)) {
|
||||||
|
if (main_loop)
|
||||||
|
main_loop->notification(MainLoop::NOTIFICATION_WM_QUIT_REQUEST);
|
||||||
|
}
|
||||||
|
}
|
||||||
/*
|
/*
|
||||||
if (wParam==VK_WIN) TODO wtf is this?
|
if (wParam==VK_WIN) TODO wtf is this?
|
||||||
meta_mem=uMsg==WM_KEYDOWN;
|
meta_mem=uMsg==WM_KEYDOWN;
|
||||||
|
|
Loading…
Reference in a new issue