Merge pull request #93682 from dsnopek/fix-text-editor-find-in-files-focus-bug

Fix text editor stealing focus from "Find in Files" dialog on X11
This commit is contained in:
Rémi Verschelde
2024-06-28 12:37:52 +02:00
committed by GitHub

View File

@ -3040,7 +3040,7 @@ void DisplayServerX11::window_set_ime_active(const bool p_active, WindowID p_win
XWindowAttributes xwa;
XSync(x11_display, False);
XGetWindowAttributes(x11_display, wd.x11_xim_window, &xwa);
if (xwa.map_state == IsViewable && _window_focus_check()) {
if (xwa.map_state == IsViewable) {
_set_input_focus(wd.x11_xim_window, RevertToParent);
}
XSetICFocus(wd.xic);