diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-01-23 08:20:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-23 08:20:24 +0100 |
commit | c2e07db071a30e8b4cb8073f15d7fc6dbf9c8a1d (patch) | |
tree | e71ef28498300fe971845e90b90a19426a7efb54 /platform/iphone/os_iphone.cpp | |
parent | f03a121b6d83fc93f1c0d0aeb4308dda112f444f (diff) | |
parent | a3bcdbeb78715fdc30a130935bd21cb44b969ded (diff) |
Merge pull request #35438 from MadEqua/virtual-keyboard-line-edit
Android virtual keyboard respecting LineEdit max length.
Diffstat (limited to 'platform/iphone/os_iphone.cpp')
-rw-r--r-- | platform/iphone/os_iphone.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/iphone/os_iphone.cpp b/platform/iphone/os_iphone.cpp index 3e5ab7b886..7a699f9b50 100644 --- a/platform/iphone/os_iphone.cpp +++ b/platform/iphone/os_iphone.cpp @@ -482,7 +482,7 @@ extern Error _shell_open(String p_uri); extern void _set_keep_screen_on(bool p_enabled); extern void _vibrate(); -void OSIPhone::show_virtual_keyboard(const String &p_existing_text, const Rect2 &p_screen_rect) { +void OSIPhone::show_virtual_keyboard(const String &p_existing_text, const Rect2 &p_screen_rect, int p_max_input_length) { _show_keyboard(p_existing_text); }; |