diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2020-05-20 11:45:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-20 11:45:59 +0200 |
| commit | aec07538f47211a8fe87dbc4e42918478da03b1d (patch) | |
| tree | ab8be41abc4a96d2b834e85ca5d8964dae939c16 /servers/display_server.h | |
| parent | a325a777a647738c222bb70aa1467e4e6516224c (diff) | |
| parent | cc473b948f814a52b383590791b5226d15a8b010 (diff) | |
Merge pull request #38309 from SkyLucilfer/AndroidLineEdit
Fix Android LineEdit editing bugs
Diffstat (limited to 'servers/display_server.h')
| -rw-r--r-- | servers/display_server.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/servers/display_server.h b/servers/display_server.h index f6ba26fc6f..be1014736f 100644 --- a/servers/display_server.h +++ b/servers/display_server.h @@ -280,7 +280,7 @@ public: virtual void console_set_visible(bool p_enabled); virtual bool is_console_visible() const; - virtual void virtual_keyboard_show(const String &p_existing_text, const Rect2 &p_screen_rect = Rect2(), int p_max_legth = -1); + virtual void virtual_keyboard_show(const String &p_existing_text, const Rect2 &p_screen_rect = Rect2(), int p_max_legth = -1, int p_cursor_start = -1, int p_cursor_end = -1); virtual void virtual_keyboard_hide(); // returns height of the currently shown virtual keyboard (0 if keyboard is hidden) |