diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-02-16 15:26:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-16 15:26:02 +0100 |
commit | b5c0a892d45b1a9df10aaf0f468252925ea2a4b9 (patch) | |
tree | ca006460a31bf1ec8031e40952394a39e824d5f0 /editor/debugger/script_editor_debugger.cpp | |
parent | eeda603355bdaf76d138d2646b3e4316924efe29 (diff) | |
parent | dcd2a92af3cc85b50ee2c02dc64589da6d429e8c (diff) | |
download | redot-engine-b5c0a892d45b1a9df10aaf0f468252925ea2a4b9.tar.gz |
Merge pull request #58163 from jmb462/notification-chunk-A
Diffstat (limited to 'editor/debugger/script_editor_debugger.cpp')
-rw-r--r-- | editor/debugger/script_editor_debugger.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/debugger/script_editor_debugger.cpp b/editor/debugger/script_editor_debugger.cpp index e08ddff816..645d7608f3 100644 --- a/editor/debugger/script_editor_debugger.cpp +++ b/editor/debugger/script_editor_debugger.cpp @@ -796,8 +796,8 @@ void ScriptEditorDebugger::_notification(int p_what) { search->set_right_icon(get_theme_icon(SNAME("Search"), SNAME("EditorIcons"))); reason->add_theme_color_override("font_color", get_theme_color(SNAME("error_color"), SNAME("Editor"))); - } break; + case NOTIFICATION_PROCESS: { if (is_session_active()) { peer->poll(); @@ -857,6 +857,7 @@ void ScriptEditorDebugger::_notification(int p_what) { break; }; } break; + case EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED: { if (tabs->has_theme_stylebox_override("panel")) { tabs->add_theme_style_override("panel", EditorNode::get_singleton()->get_gui_base()->get_theme_stylebox(SNAME("DebuggerPanel"), SNAME("EditorStyles"))); |