summaryrefslogtreecommitdiff
path: root/editor/editor_help.h
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-09-17 13:54:54 +0200
committerGitHub <noreply@github.com>2021-09-17 13:54:54 +0200
commit949c268a687006c902b02d1cd0b408b19358c4e6 (patch)
tree8ed54d4bac4545e859e17639adfbe0080ff0ba7a /editor/editor_help.h
parentab544a20dedc8bc366b3c68b438a55c2bde56fae (diff)
parent1dda47c28027dfd0818553f2c79d0db12dfc6f31 (diff)
Merge pull request #52655 from Chaosus/toggle_scripts_panel
Diffstat (limited to 'editor/editor_help.h')
-rw-r--r--editor/editor_help.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/editor/editor_help.h b/editor/editor_help.h
index 0b0821a7f4..7a45b1abc1 100644
--- a/editor/editor_help.h
+++ b/editor/editor_help.h
@@ -123,6 +123,8 @@ class EditorHelp : public VBoxContainer {
ConfirmationDialog *search_dialog;
LineEdit *search;
FindBar *find_bar;
+ HBoxContainer *status_bar;
+ Button *toggle_scripts_button;
String base_path;
@@ -159,6 +161,7 @@ class EditorHelp : public VBoxContainer {
void _search(bool p_search_previous = false);
String _fix_constant(const String &p_constant) const;
+ void _toggle_scripts_pressed();
protected:
void _notification(int p_what);
@@ -185,6 +188,8 @@ public:
int get_scroll() const;
void set_scroll(int p_scroll);
+ void update_toggle_scripts_button();
+
EditorHelp();
~EditorHelp();
};