You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 17:36:07 +00:00
Fix project manager stealing focus on i3
This commit is contained in:
@@ -2958,7 +2958,7 @@ void TextEdit::_close_ime_window() {
|
||||
|
||||
void TextEdit::_update_ime_window_position() {
|
||||
DisplayServer::WindowID wid = get_window() ? get_window()->get_window_id() : DisplayServer::INVALID_WINDOW_ID;
|
||||
if (wid == DisplayServer::INVALID_WINDOW_ID || !DisplayServer::get_singleton()->has_feature(DisplayServer::FEATURE_IME)) {
|
||||
if (wid == DisplayServer::INVALID_WINDOW_ID || !DisplayServer::get_singleton()->has_feature(DisplayServer::FEATURE_IME) || !DisplayServer::get_singleton()->window_is_focused(wid)) {
|
||||
return;
|
||||
}
|
||||
DisplayServer::get_singleton()->window_set_ime_active(true, wid);
|
||||
|
||||
Reference in New Issue
Block a user