Re: [PATCH v2 0/1] MR2229: winex11: Fix X11 WM behavior for Delphi based apps.
18 Feb
2023
18 Feb
'23
11:46 a.m.
Bernhard Kölbl (@besentv) commented about dlls/winex11.drv/event.c:
if (hwnd) hwnd = NtUserGetAncestor( hwnd, GA_ROOT ); if (!hwnd) hwnd = get_active_window(); if (!hwnd) hwnd = last_focus; - if (hwnd && can_activate_window(hwnd)) set_focus( event->display, hwnd, event_time ); + if (hwnd && can_activate_window(hwnd)) + { + Window win = X11DRV_get_whole_window(hwnd); + if (win) + { + TRACE("will raise window %p", hwnd);
Missing a newline here. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/2229#note_24740
1035
Age (days ago)
1035
Last active (days ago)
0 comments
1 participants
participants (1)
-
Bernhard Kölbl