Sort project tags before saving

This commit is contained in:
Aaron Franke 2023-06-27 18:22:33 -05:00
parent d95b516d31
commit d667402461
No known key found for this signature in database
GPG Key ID: 40A1750B977E56BF

View File

@ -2504,6 +2504,7 @@ void ProjectManager::_apply_project_tags() {
callable_mp((Window *)tag_manage_dialog, &Window::show).call_deferred(); // Make sure the dialog does not disappear.
return;
} else {
tags.sort();
cfg.set_value("application", "config/tags", tags);
err = cfg.save(project_godot);
if (err != OK) {