diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-08-29 11:57:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-29 11:57:54 +0200 |
commit | 0b8a63e47193ee3e6cd6c0986993a85fc693ca54 (patch) | |
tree | f924f74107842bd3c316f5c5c9ab5da810314c43 /editor/code_editor.cpp | |
parent | 223e083d36ac1ca3f7aa46898d8870e476132f7a (diff) | |
parent | fd6453c45ec0da79f2c7794b1c94f31fd6e477d7 (diff) |
Merge pull request #65025 from akien-mga/revert-62846
Diffstat (limited to 'editor/code_editor.cpp')
-rw-r--r-- | editor/code_editor.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp index 9dddcbbeba..2b1584b20c 100644 --- a/editor/code_editor.cpp +++ b/editor/code_editor.cpp @@ -1740,6 +1740,10 @@ void CodeTextEditor::_update_status_bar_theme() { void CodeTextEditor::_notification(int p_what) { switch (p_what) { + case NOTIFICATION_ENTER_TREE: { + _update_status_bar_theme(); + } break; + case NOTIFICATION_THEME_CHANGED: { _update_status_bar_theme(); if (toggle_scripts_button->is_visible()) { |