You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-18 14:21:41 +00:00
Fix uneditable LineEdit, TexEdit and CodeEdit Virtual Keyboard popup
This commit is contained in:
@@ -1598,7 +1598,9 @@ void TextEdit::_notification(int p_what) {
|
||||
draw_caret = true;
|
||||
}
|
||||
|
||||
_show_virtual_keyboard();
|
||||
if (editable) {
|
||||
_show_virtual_keyboard();
|
||||
}
|
||||
} break;
|
||||
|
||||
case NOTIFICATION_FOCUS_EXIT: {
|
||||
@@ -2001,7 +2003,9 @@ void TextEdit::gui_input(const Ref<InputEvent> &p_gui_input) {
|
||||
}
|
||||
}
|
||||
|
||||
_show_virtual_keyboard();
|
||||
if (editable) {
|
||||
_show_virtual_keyboard();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user