Merge pull request #58783 from KoBeWi/change_in_peace

Fix color pickers closing in editor settings
This commit is contained in:
Rémi Verschelde 2022-03-06 10:18:31 +01:00 committed by GitHub
commit e3231c3ee7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -3510,7 +3510,9 @@ void EditorInspector::_notification(int p_what) {
case EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED: {
_update_inspector_bg();
update_tree();
if (EditorSettings::get_singleton()->check_changed_settings_in_group("interface/inspector")) {
update_tree();
}
} break;
}
}

View file

@ -134,8 +134,6 @@ void EditorSettingsDialog::_notification(int p_what) {
case EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED: {
_update_icons();
// Update theme colors.
inspector->update_category_list();
bool update_shortcuts_tab =
EditorSettings::get_singleton()->check_changed_settings_in_group("shortcuts") ||