mirror of https://github.com/godotengine/godot
Merge pull request #77977 from zaevi/fix_windows_popup_ime
Fix IME doesn't work under Popup on Windows.
This commit is contained in:
commit
759309ba18
|
|
@ -835,9 +835,12 @@ void DisplayServerWindows::show_window(WindowID p_id) {
|
|||
SetFocus(wd.hWnd); // Set keyboard focus.
|
||||
} else if (wd.minimized) {
|
||||
ShowWindow(wd.hWnd, SW_SHOWMINIMIZED);
|
||||
} else if (wd.no_focus || wd.is_popup) {
|
||||
} else if (wd.no_focus) {
|
||||
// https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-showwindow
|
||||
ShowWindow(wd.hWnd, SW_SHOWNA);
|
||||
} else if (wd.is_popup) {
|
||||
ShowWindow(wd.hWnd, SW_SHOWNA);
|
||||
SetFocus(wd.hWnd); // Set keyboard focus.
|
||||
} else {
|
||||
ShowWindow(wd.hWnd, SW_SHOW);
|
||||
SetForegroundWindow(wd.hWnd); // Slightly higher priority.
|
||||
|
|
|
|||
Loading…
Reference in New Issue