diff options
Diffstat (limited to 'tools/editor/script_editor_debugger.h')
-rw-r--r-- | tools/editor/script_editor_debugger.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/editor/script_editor_debugger.h b/tools/editor/script_editor_debugger.h index 55c79ca3b3..0be311a990 100644 --- a/tools/editor/script_editor_debugger.h +++ b/tools/editor/script_editor_debugger.h @@ -54,6 +54,7 @@ class ScriptEditorDebugger : public Control { AcceptDialog *msgdialog; + Button *debugger_button; LineEdit *clicked_ctrl; LineEdit *clicked_ctrl_type; @@ -80,7 +81,7 @@ class ScriptEditorDebugger : public Control { TabContainer *tabs; - Label *reason; + LineEdit *reason; bool log_forced_visible; ScriptEditorDebuggerVariables *variables; @@ -186,6 +187,8 @@ public: void set_hide_on_stop(bool p_hide); + void set_tool_button(Button *p_tb) { debugger_button=p_tb; } + virtual Size2 get_minimum_size() const; ScriptEditorDebugger(EditorNode *p_editor=NULL); ~ScriptEditorDebugger(); |