diff options
author | MattUV <matt.huve@gmail.com> | 2017-12-08 00:38:47 +0100 |
---|---|---|
committer | MattUV <matt.huve@gmail.com> | 2017-12-08 00:46:03 +0100 |
commit | 93231819c28be2895d6e56073e1b5599cd60b888 (patch) | |
tree | 97b80ca770027ca9c4e825f21be03d2103385aaf /editor | |
parent | dcab01618ae9eaa18e16b377728125379a8f48bc (diff) |
Fix Manage Export Templates link
In some cases, the link to download export templates was missing.
Fixes #14391
Diffstat (limited to 'editor')
-rw-r--r-- | editor/editor_export.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/editor_export.cpp b/editor/editor_export.cpp index fc73964764..3f618c3199 100644 --- a/editor/editor_export.cpp +++ b/editor/editor_export.cpp @@ -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; } |