summaryrefslogtreecommitdiff
path: root/tools/editor/script_editor_debugger.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2016-01-08 20:50:41 +0100
committerRémi Verschelde <remi@verschelde.fr>2016-01-08 20:50:41 +0100
commit515567d491a6045a8786366f6bb85ab391aa681b (patch)
treed4f34267986889a69667b2d332f916edb25aa1a9 /tools/editor/script_editor_debugger.cpp
parente3d4a851b7e1707d9068a9294b3bf26ad0845b35 (diff)
parent514eed407282c19e61f461f88d99dc627f417701 (diff)
Merge pull request #3282 from TheHX/pr-script-debugger
Fix debugger close button and script editor "Show Debugger"
Diffstat (limited to 'tools/editor/script_editor_debugger.cpp')
-rw-r--r--tools/editor/script_editor_debugger.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/editor/script_editor_debugger.cpp b/tools/editor/script_editor_debugger.cpp
index fb821573f9..aad89d1272 100644
--- a/tools/editor/script_editor_debugger.cpp
+++ b/tools/editor/script_editor_debugger.cpp
@@ -569,8 +569,8 @@ void ScriptEditorDebugger::_notification(int p_what) {
ppeer->set_stream_peer(connection);
-
show();
+ emit_signal("show_debugger",true);
dobreak->set_disabled(false);
tabs->set_current_tab(0);
@@ -770,6 +770,7 @@ void ScriptEditorDebugger::_stack_dump_frame_selected() {
void ScriptEditorDebugger::_hide_request() {
+ hide();
emit_signal("show_debugger",false);
}