Skip to content

Commit afaf52b

Browse files
authoredMar 14, 2025··
Merge pull request #375 from sshiiden/fix-texture-filtering
Revert "Improve: prevent ProjectSettings from emitting settings chang…
2 parents 914defe + 01387f0 commit afaf52b

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed
 

‎core/config/project_settings.cpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1028,10 +1028,9 @@ Error ProjectSettings::save_custom(const String &p_path, const CustomMap &p_cust
10281028
}
10291029
}
10301030
project_features = _trim_to_supported_features(project_features);
1031-
1032-
is_changed = true;
1033-
set_setting("application/config/features", project_features);
1034-
is_changed = false;
1031+
if (get_setting("application/config/features") != project_features) {
1032+
set_setting("application/config/features", project_features);
1033+
}
10351034
#endif // TOOLS_ENABLED
10361035

10371036
RBSet<_VCSort> vclist;

0 commit comments

Comments
 (0)
Please sign in to comment.