diff options
author | Bruno Lourenço <madequa@users.noreply.github.com> | 2020-01-22 15:13:36 +0000 |
---|---|---|
committer | Bruno Lourenço <madequa@users.noreply.github.com> | 2020-01-23 01:52:49 +0000 |
commit | a3bcdbeb78715fdc30a130935bd21cb44b969ded (patch) | |
tree | 05cc51c6aad62fb09653d60ea70dbe3d2684cc0d /core/os/os.cpp | |
parent | 409de53e7253a0e900b09aedb983d998ccf30659 (diff) | |
download | redot-engine-a3bcdbeb78715fdc30a130935bd21cb44b969ded.tar.gz |
Android virtual keyboard respecting LineEdit max length.
Diffstat (limited to 'core/os/os.cpp')
-rw-r--r-- | core/os/os.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/os/os.cpp b/core/os/os.cpp index 81dea159a6..1ed9484208 100644 --- a/core/os/os.cpp +++ b/core/os/os.cpp @@ -221,7 +221,7 @@ bool OS::has_virtual_keyboard() const { return false; } -void OS::show_virtual_keyboard(const String &p_existing_text, const Rect2 &p_screen_rect) { +void OS::show_virtual_keyboard(const String &p_existing_text, const Rect2 &p_screen_rect, int p_max_input_length) { } void OS::hide_virtual_keyboard() { |