diff options
Diffstat (limited to 'scene/gui/text_edit.h')
-rw-r--r-- | scene/gui/text_edit.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scene/gui/text_edit.h b/scene/gui/text_edit.h index 2ca5ab054a..44e780aaf3 100644 --- a/scene/gui/text_edit.h +++ b/scene/gui/text_edit.h @@ -231,6 +231,9 @@ class TextEdit : public Control { bool next_operation_is_complex; + bool callhint_below; + Vector2 callhint_offset; + int get_visible_rows() const; int get_char_count(); @@ -326,6 +329,10 @@ public: brace_matching_enabled=p_enabled; update(); } + inline void set_callhint_settings(bool below, Vector2 offset) { + callhint_below = below; + callhint_offset = offset; + } void set_auto_indent(bool p_auto_indent); void cursor_set_column(int p_col, bool p_adjust_viewport=true); |