Skip to content

Commit

Permalink
Merge pull request #79299 from aaronfranke/pm-ver-popup-up-down
Browse files Browse the repository at this point in the history
Improve text in popup warning, remove "upgrade or downgrade" text
  • Loading branch information
akien-mga committed Jul 11, 2023
2 parents 5dbbdaf + 95ccbde commit 9074925
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/project_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2313,7 +2313,7 @@ void ProjectManager::_open_selected_projects_ask() {
unsupported_features.remove_at(i);
i--;
} else if (_project_feature_looks_like_version(feature)) {
warning_message += vformat(TTR("Warning: This project was built in Godot %s.\nOpening will upgrade or downgrade the project to Godot %s.\n\n"), Variant(feature), Variant(VERSION_BRANCH));
warning_message += vformat(TTR("Warning: This project was last edited in Godot %s. Opening will change it to Godot %s.\n\n"), Variant(feature), Variant(VERSION_BRANCH));
unsupported_features.remove_at(i);
i--;
}
Expand Down

0 comments on commit 9074925

Please sign in to comment.