1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-11 13:10:58 +00:00

Script debugger remains visible when using Debug->Show Debugger

This commit is contained in:
Franklin Sobrinho
2015-12-12 10:00:12 -03:00
parent 990690f9f5
commit 4d644ca997
3 changed files with 20 additions and 13 deletions

View File

@@ -79,6 +79,7 @@ class ScriptEditorDebugger : public Control {
TabContainer *tabs;
Label *reason;
bool always_visible;
bool log_forced_visible;
ScriptEditorDebuggerVariables *variables;
@@ -182,6 +183,7 @@ public:
void update_live_edit_root();
void set_always_visible(bool p_visible);
virtual Size2 get_minimum_size() const;
ScriptEditorDebugger(EditorNode *p_editor=NULL);