summaryrefslogtreecommitdiffstats
path: root/editor/debugger/editor_debugger_node.cpp
diff options
context:
space:
mode:
authorkit <kitbdev@gmail.com>2024-01-30 17:22:22 -0500
committerkit <kitbdev@gmail.com>2024-02-20 15:09:07 -0500
commiteb6ca91ba6f04a4ff2e21b3ca097c92b6a68dbc8 (patch)
tree9025a6550c2d70be14fa324e07bf5d4533d2c5bc /editor/debugger/editor_debugger_node.cpp
parent1aab6e96b96af734d1fe5979d30d1a4232cb270d (diff)
downloadredot-engine-eb6ca91ba6f04a4ff2e21b3ca097c92b6a68dbc8.tar.gz
Extract BottomPanel from EditorNode
Diffstat (limited to 'editor/debugger/editor_debugger_node.cpp')
-rw-r--r--editor/debugger/editor_debugger_node.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/editor/debugger/editor_debugger_node.cpp b/editor/debugger/editor_debugger_node.cpp
index 14997c52bb..5fe35bde84 100644
--- a/editor/debugger/editor_debugger_node.cpp
+++ b/editor/debugger/editor_debugger_node.cpp
@@ -38,6 +38,7 @@
#include "editor/editor_settings.h"
#include "editor/editor_string_names.h"
#include "editor/editor_undo_redo_manager.h"
+#include "editor/gui/editor_bottom_panel.h"
#include "editor/gui/editor_run_bar.h"
#include "editor/inspector_dock.h"
#include "editor/plugins/editor_debugger_plugin.h"
@@ -268,9 +269,9 @@ Error EditorDebuggerNode::start(const String &p_uri) {
stop(true);
current_uri = p_uri;
if (EDITOR_GET("run/output/always_open_output_on_play")) {
- EditorNode::get_singleton()->make_bottom_panel_item_visible(EditorNode::get_log());
+ EditorNode::get_bottom_panel()->make_item_visible(EditorNode::get_log());
} else {
- EditorNode::get_singleton()->make_bottom_panel_item_visible(this);
+ EditorNode::get_bottom_panel()->make_item_visible(this);
}
server = Ref<EditorDebuggerServer>(EditorDebuggerServer::create(p_uri.substr(0, p_uri.find("://") + 3)));
const Error err = server->start(p_uri);
@@ -502,7 +503,7 @@ void EditorDebuggerNode::_break_state_changed() {
const bool breaked = get_current_debugger()->is_breaked();
const bool can_debug = get_current_debugger()->is_debuggable();
if (breaked) { // Show debugger.
- EditorNode::get_singleton()->make_bottom_panel_item_visible(this);
+ EditorNode::get_bottom_panel()->make_item_visible(this);
}
// Update script menu.