Merge pull request #39407 from Calinou/tweak-invalid-export-preset-message

Tweak the invalid preset error message to mention `export_presets.cfg`
This commit is contained in:
Rémi Verschelde 2020-06-09 11:09:15 +02:00 committed by GitHub
commit a1c7669bef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -619,7 +619,9 @@ void EditorNode::_fs_changed() {
preset.unref();
}
if (preset.is_null()) {
export_error = vformat("Invalid export preset name: %s.", preset_name);
export_error = vformat(
"Invalid export preset name: %s. Make sure `export_presets.cfg` is present in the current directory.",
preset_name);
} else {
Ref<EditorExportPlatform> platform = preset->get_platform();
if (platform.is_null()) {