Don't save project settings when not necessary
This commit is contained in:
parent
7128f09a5d
commit
4db47eb32e
2 changed files with 16 additions and 0 deletions
|
@ -275,6 +275,14 @@ void ScriptServer::save_global_classes() {
|
|||
gcarr.push_back(d);
|
||||
}
|
||||
|
||||
Array old;
|
||||
if (ProjectSettings::get_singleton()->has_setting("_global_script_classes")) {
|
||||
old = ProjectSettings::get_singleton()->get("_global_script_classes");
|
||||
}
|
||||
if ((!old.is_empty() || gcarr.is_empty()) && gcarr.hash() == old.hash()) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (gcarr.is_empty()) {
|
||||
if (ProjectSettings::get_singleton()->has_setting("_global_script_classes")) {
|
||||
ProjectSettings::get_singleton()->clear("_global_script_classes");
|
||||
|
|
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue