diff options
| author | Juan Linietsky | 2016-01-17 20:03:57 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2016-01-17 20:03:57 -0300 |
| commit | 74a48a0140262ebd3a818a75b7d102cf0fe2eeae (patch) | |
| tree | 6789b64b2df5bbf81d519a4d4d70d1e9f0c35655 /tools/editor/script_editor_debugger.h | |
| parent | 72fcb8a35beab251d01864bc67da3e3a8e75aed6 (diff) | |
| download | godot-74a48a0140262ebd3a818a75b7d102cf0fe2eeae.tar.gz godot-74a48a0140262ebd3a818a75b7d102cf0fe2eeae.tar.zst godot-74a48a0140262ebd3a818a75b7d102cf0fe2eeae.zip | |
-Massive editor dialog cleanup
-Added a bottom menu list
Diffstat (limited to '')
| -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 55c79ca3b..0be311a99 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(); |
