mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Add a LineEdit
/ TextEdit
property to control whether the virtual keyboard should show on focus
This commit is contained in:
parent
1cf573f44d
commit
f29feac7a5
6 changed files with 50 additions and 5 deletions
|
@ -343,6 +343,7 @@ private:
|
|||
bool backspace_deletes_composite_character_enabled = false;
|
||||
bool shortcut_keys_enabled = true;
|
||||
bool virtual_keyboard_enabled = true;
|
||||
bool virtual_keyboard_show_on_focus = true;
|
||||
bool middle_mouse_paste_enabled = true;
|
||||
bool empty_selection_clipboard_enabled = true;
|
||||
|
||||
|
@ -823,6 +824,9 @@ public:
|
|||
void set_virtual_keyboard_enabled(bool p_enabled);
|
||||
bool is_virtual_keyboard_enabled() const;
|
||||
|
||||
void set_virtual_keyboard_show_on_focus(bool p_show_on_focus);
|
||||
bool get_virtual_keyboard_show_on_focus() const;
|
||||
|
||||
void set_middle_mouse_paste_enabled(bool p_enabled);
|
||||
bool is_middle_mouse_paste_enabled() const;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue