Skip to content

Commit

Permalink
Merge pull request #78775 from aaronfranke/proj-tag-sort
Browse files Browse the repository at this point in the history
Sort project tags before saving
  • Loading branch information
akien-mga committed Jul 7, 2023
2 parents 2c0a0a0 + d667402 commit 2935a2b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions editor/project_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 2935a2b

Please sign in to comment.