diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2021-11-29 16:24:02 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-05-13 09:33:24 +0300 |
commit | 081b6b80531c1b0e7a41dc9ff2341b45ff865d62 (patch) | |
tree | 393fb2811eecefd9e5ed54568776e5efe49bed9a /scene/gui/line_edit.h | |
parent | eb80a9f325199e818eb815644682f2d75b1e8ecc (diff) | |
download | redot-engine-081b6b80531c1b0e7a41dc9ff2341b45ff865d62.tar.gz |
Add ALT NUM+ {hex code} character input support for LineEdit, TextEdit and CodeEdit.
Diffstat (limited to 'scene/gui/line_edit.h')
-rw-r--r-- | scene/gui/line_edit.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scene/gui/line_edit.h b/scene/gui/line_edit.h index 50aa2f4460..0fb178fca4 100644 --- a/scene/gui/line_edit.h +++ b/scene/gui/line_edit.h @@ -77,6 +77,9 @@ private: bool pass = false; bool text_changed_dirty = false; + bool alt_start = false; + uint32_t alt_code = 0; + String undo_text; String text; String placeholder; |