Merge pull request #14396 from MattUV/fix-templates-link

Fix Manage Export Templates link
This commit is contained in:
Rémi Verschelde
2017-12-08 08:02:19 +01:00
committed by GitHub
3 changed files with 3 additions and 0 deletions

View File

@@ -1261,6 +1261,7 @@ bool EditorExportPlatformPC::can_export(const Ref<EditorExportPreset> &p_preset,
if (custom_debug_binary == "" && custom_release_binary == "") {
if (!err.empty())
r_error = err;
r_missing_templates = !valid;
return valid;
}

View File

@@ -974,6 +974,7 @@ bool EditorExportPlatformIOS::can_export(const Ref<EditorExportPreset> &p_preset
if (!err.empty())
r_error = err;
r_missing_templates = !valid;
return valid;
}

View File

@@ -605,6 +605,7 @@ bool EditorExportPlatformOSX::can_export(const Ref<EditorExportPreset> &p_preset
if (!err.empty())
r_error = err;
r_missing_templates = !valid;
return valid;
}