mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Use check_changed_settings_in_group() everywhere
This commit is contained in:
parent
0246230e2b
commit
a031911c82
36 changed files with 213 additions and 69 deletions
|
@ -44,6 +44,7 @@
|
|||
#include "editor/event_listener_line_edit.h"
|
||||
#include "editor/input_event_configuration_dialog.h"
|
||||
#include "editor/themes/editor_scale.h"
|
||||
#include "editor/themes/editor_theme_manager.h"
|
||||
#include "scene/gui/margin_container.h"
|
||||
|
||||
void EditorSettingsDialog::ok_pressed() {
|
||||
|
@ -145,7 +146,9 @@ void EditorSettingsDialog::_notification(int p_what) {
|
|||
} break;
|
||||
|
||||
case EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED: {
|
||||
_update_icons();
|
||||
if (EditorThemeManager::is_generated_theme_outdated()) {
|
||||
_update_icons();
|
||||
}
|
||||
|
||||
bool update_shortcuts_tab =
|
||||
EditorSettings::get_singleton()->check_changed_settings_in_group("shortcuts") ||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue