forked from AuroraMiddleware/gtk
Fix Win32 popup focus when using SSD
Prevents GDK Popups from stealing focus from the parent window when using Server Side Decorations on win32. It uses `ShowWindow` and the `SW_SHOWNOACTIVATE` flag.
This commit is contained in:
parent
b6d4067717
commit
f0a8c6311e
@ -1327,6 +1327,9 @@ gdk_win32_surface_raise (GdkSurface *window)
|
||||
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (window), HWND_TOPMOST,
|
||||
0, 0, 0, 0,
|
||||
SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOSIZE | SWP_NOOWNERZORDER));
|
||||
|
||||
else if (GDK_IS_POPUP (window))
|
||||
ShowWindow (GDK_SURFACE_HWND (window), SW_SHOWNOACTIVATE);
|
||||
else
|
||||
/* Do not wrap this in an API_CALL macro as SetForegroundWindow might
|
||||
* fail when for example dragging a window belonging to a different
|
||||
|
Loading…
Reference in New Issue
Block a user