mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Don't save project settings when not necessary
This commit is contained in:
@@ -942,6 +942,14 @@ void EditorData::script_class_save_icon_paths() {
|
||||
}
|
||||
}
|
||||
|
||||
Dictionary old;
|
||||
if (ProjectSettings::get_singleton()->has_setting("_global_script_class_icons")) {
|
||||
old = ProjectSettings::get_singleton()->get("_global_script_class_icons");
|
||||
}
|
||||
if ((!old.is_empty() || d.is_empty()) && d.hash() == old.hash()) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (d.is_empty()) {
|
||||
if (ProjectSettings::get_singleton()->has_setting("_global_script_class_icons")) {
|
||||
ProjectSettings::get_singleton()->clear("_global_script_class_icons");
|
||||
|
||||
Reference in New Issue
Block a user