diff options
| author | Rémi Verschelde <remi@verschelde.fr> | 2022-05-30 10:24:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-30 10:24:49 +0200 |
| commit | 9b78d68605d88c6984737ced7feeebd46430d0e2 (patch) | |
| tree | 6222269d7731998a654cce4b6b02203f48c5299c /editor/editor_help.h | |
| parent | 6bfea2469567c88d9778883ae4d11d66bc965457 (diff) | |
| parent | 96cc3c74da0d2e5b75548a8c2d86950661870b69 (diff) | |
Merge pull request #61536 from bruvzg/fix_help_links
Fix help links with threaded RTL.
Diffstat (limited to 'editor/editor_help.h')
| -rw-r--r-- | editor/editor_help.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/editor_help.h b/editor/editor_help.h index b5410f6880..766a09f485 100644 --- a/editor/editor_help.h +++ b/editor/editor_help.h @@ -140,6 +140,8 @@ class EditorHelp : public VBoxContainer { Ref<Font> doc_title_font; Ref<Font> doc_code_font; + int scroll_to = -1; + void _update_theme(); void _help_callback(const String &p_topic); @@ -152,6 +154,7 @@ class EditorHelp : public VBoxContainer { void _add_bulletpoint(); + void _class_desc_finished(); void _class_list_select(const String &p_select); void _class_desc_select(const String &p_select); void _class_desc_input(const Ref<InputEvent> &p_input); |