mirror of
https://github.com/godotengine/godot.git
synced 2024-11-29 07:32:20 +00:00
Fix Manage Export Templates link
In some cases, the link to download export templates was missing. Fixes #14391
This commit is contained in:
parent
dcab01618a
commit
93231819c2
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user