mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Disable showing the virtual keyboard on focus events for certain editor components
This commit is contained in:
parent
f29feac7a5
commit
a088b5dc23
4 changed files with 4 additions and 0 deletions
|
|
@ -902,6 +902,7 @@ EditorSettingsDialog::EditorSettingsDialog() {
|
|||
search_box = memnew(LineEdit);
|
||||
search_box->set_placeholder(TTR("Filter Settings"));
|
||||
search_box->set_accessibility_name(TTRC("Filter Settings"));
|
||||
search_box->set_virtual_keyboard_show_on_focus(false);
|
||||
search_box->set_h_size_flags(Control::SIZE_EXPAND_FILL);
|
||||
hbc->add_child(search_box);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue