mirror of
https://github.com/godotengine/godot.git
synced 2024-12-09 10:09:20 +08:00
Do not consume (eat) mouse messages with no_focus Window's (Godot PopupMenu)
Window's with the no_focus flag should still process mouse events and not consume them. Otherwise all mouse pressed operations will not work inside Godot's PopupMenu. This problem is Windows only, all other platforms do process mouse events for PopupMenu's correctly.
This commit is contained in:
parent
5df9867967
commit
40d7320a17
@ -2958,9 +2958,7 @@ LRESULT DisplayServerWindows::WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARA
|
||||
}
|
||||
} break;
|
||||
case WM_MOUSEACTIVATE: {
|
||||
if (windows[window_id].no_focus) {
|
||||
return MA_NOACTIVATEANDEAT; // Do not activate, and discard mouse messages.
|
||||
} else if (windows[window_id].is_popup) {
|
||||
if (windows[window_id].no_focus || windows[window_id].is_popup) {
|
||||
return MA_NOACTIVATE; // Do not activate, but process mouse messages.
|
||||
}
|
||||
} break;
|
||||
|
Loading…
Reference in New Issue
Block a user