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/plugins/script_editor_plugin.cpp | |
parent | 223e083d36ac1ca3f7aa46898d8870e476132f7a (diff) | |
parent | fd6453c45ec0da79f2c7794b1c94f31fd6e477d7 (diff) |
Merge pull request #65025 from akien-mga/revert-62846
Diffstat (limited to 'editor/plugins/script_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/script_editor_plugin.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp index 1a692cffcc..98be34cb86 100644 --- a/editor/plugins/script_editor_plugin.cpp +++ b/editor/plugins/script_editor_plugin.cpp @@ -352,9 +352,9 @@ void ScriptEditorQuickOpen::_notification(int p_what) { connect("confirmed", callable_mp(this, &ScriptEditorQuickOpen::_confirmed)); search_box->set_clear_button_enabled(true); - } break; - - case NOTIFICATION_THEME_CHANGED: { + [[fallthrough]]; + } + case NOTIFICATION_VISIBILITY_CHANGED: { search_box->set_right_icon(search_options->get_theme_icon(SNAME("Search"), SNAME("EditorIcons"))); } break; @@ -1613,8 +1613,8 @@ void ScriptEditor::_notification(int p_what) { EditorSettings::get_singleton()->connect("settings_changed", callable_mp(this, &ScriptEditor::_editor_settings_changed)); EditorFileSystem::get_singleton()->connect("filesystem_changed", callable_mp(this, &ScriptEditor::_filesystem_changed)); _editor_settings_changed(); - } break; - + [[fallthrough]]; + } case NOTIFICATION_TRANSLATION_CHANGED: case NOTIFICATION_LAYOUT_DIRECTION_CHANGED: case NOTIFICATION_THEME_CHANGED: { |