From 14dd5954476da8a9a40b8733cdeb04b66ca46c0e Mon Sep 17 00:00:00 2001 From: Anish Mishra Date: Wed, 9 Oct 2024 16:32:52 +0530 Subject: [PATCH] Fix uneditable LineEdit, TexEdit and CodeEdit Virtual Keyboard popup --- scene/gui/line_edit.cpp | 4 +++- scene/gui/text_edit.cpp | 8 ++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/scene/gui/line_edit.cpp b/scene/gui/line_edit.cpp index 99678051346..7fe8633b2fb 100644 --- a/scene/gui/line_edit.cpp +++ b/scene/gui/line_edit.cpp @@ -548,7 +548,9 @@ void LineEdit::gui_input(const Ref &p_event) { pending_select_all_on_focus = false; } - show_virtual_keyboard(); + if (editable) { + show_virtual_keyboard(); + } } queue_redraw(); diff --git a/scene/gui/text_edit.cpp b/scene/gui/text_edit.cpp index 6b5ff23436e..f22258e4a09 100644 --- a/scene/gui/text_edit.cpp +++ b/scene/gui/text_edit.cpp @@ -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 &p_gui_input) { } } - _show_virtual_keyboard(); + if (editable) { + _show_virtual_keyboard(); + } } }