Merge pull request #42018 from Leleat/create-user-dir-if-nonexistant

Create user-dir, if non-existant, so it can be opened with Godot
This commit is contained in:
Rémi Verschelde 2020-09-24 15:21:01 +02:00 committed by GitHub
commit 4b3a566cf1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2545,6 +2545,8 @@ void EditorNode::_menu_option_confirm(int p_option, bool p_confirmed) {
}
} break;
case RUN_PROJECT_DATA_FOLDER: {
// ensure_user_data_dir() to prevent the edge case: "Open Project Data Folder" won't work after the project was renamed in ProjectSettingsEditor unless the project is saved
OS::get_singleton()->ensure_user_data_dir();
OS::get_singleton()->shell_open(String("file://") + OS::get_singleton()->get_user_data_dir());
} break;
case FILE_EXPLORE_ANDROID_BUILD_TEMPLATES: {