diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2015-12-13 10:09:23 +0100 |
---|---|---|
committer | Rémi Verschelde <remi@verschelde.fr> | 2015-12-13 10:09:23 +0100 |
commit | 3e733afaaa6e1da4b1f5fad6a13435efb70c6f27 (patch) | |
tree | 1d6d586b99a38667b7fa1860d5b0615059890c5b /tools/editor | |
parent | 709de124c17988ab05f606c09d0f6414fbbd2ca9 (diff) | |
parent | df57239f7f41629149dc387febaf66e394dcf0a6 (diff) |
Merge pull request #3053 from TheHX/pr-revert-3043
Remove last remaining variables of PR-3043
Diffstat (limited to 'tools/editor')
-rw-r--r-- | tools/editor/script_editor_debugger.cpp | 4 | ||||
-rw-r--r-- | tools/editor/script_editor_debugger.h | 1 |
2 files changed, 1 insertions, 4 deletions
diff --git a/tools/editor/script_editor_debugger.cpp b/tools/editor/script_editor_debugger.cpp index 1247760a55..d0bf4faf02 100644 --- a/tools/editor/script_editor_debugger.cpp +++ b/tools/editor/script_editor_debugger.cpp @@ -570,8 +570,7 @@ void ScriptEditorDebugger::_notification(int p_what) { ppeer->set_stream_peer(connection); - if (!always_visible) - show(); + show(); dobreak->set_disabled(false); tabs->set_current_tab(0); @@ -1460,7 +1459,6 @@ ScriptEditorDebugger::ScriptEditorDebugger(EditorNode *p_editor){ add_child(msgdialog); hide(); - always_visible=false; log_forced_visible=false; p_editor->get_undo_redo()->set_method_notify_callback(_method_changeds,this); diff --git a/tools/editor/script_editor_debugger.h b/tools/editor/script_editor_debugger.h index 906714d13c..43666b37d5 100644 --- a/tools/editor/script_editor_debugger.h +++ b/tools/editor/script_editor_debugger.h @@ -81,7 +81,6 @@ class ScriptEditorDebugger : public Control { TabContainer *tabs; Label *reason; - bool always_visible; bool log_forced_visible; ScriptEditorDebuggerVariables *variables; |