summaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2022-11-30 10:38:53 +0200
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2022-11-30 10:38:53 +0200
commitaa117a128e48bb922df2c17e957fb29eedfad746 (patch)
tree0117d18a708f9686375423025b21129241e97d00 /platform
parent5826e960143fd416e0d02cf8f672d778f56da9ea (diff)
[macOS] Fix export button incorrectly disabled when using login/app password for notarization.
Diffstat (limited to 'platform')
-rw-r--r--platform/macos/export/export_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/macos/export/export_plugin.cpp b/platform/macos/export/export_plugin.cpp
index 5860a4f0ae..5e71d10a3f 100644
--- a/platform/macos/export/export_plugin.cpp
+++ b/platform/macos/export/export_plugin.cpp
@@ -1834,8 +1834,8 @@ bool EditorExportPlatformMacOS::has_valid_project_configuration(const Ref<Editor
if (p_preset->get("notarization/apple_id_name") != "") {
if (p_preset->get("notarization/apple_id_password") == "") {
err += TTR("Notarization: Apple ID password not specified.") + "\n";
+ valid = false;
}
- valid = false;
}
if (p_preset->get("notarization/api_uuid") != "") {
if (p_preset->get("notarization/api_key") == "") {