diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-30 10:49:00 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-30 10:49:00 +0100 |
commit | 3afa207f1aed8962ae9d6d774ca66b1bcf0a1c45 (patch) | |
tree | c35a811301662fa7a571cc32261cd77e7aba85ff /platform/macos | |
parent | e51d69dda09dfb586db1cf9bd369b5fbe58c4504 (diff) | |
parent | aa117a128e48bb922df2c17e957fb29eedfad746 (diff) |
Merge pull request #69377 from bruvzg/mac_app_pass_nt
[macOS] Fix export button incorrectly disabled when using login/app password for notarization.
Diffstat (limited to 'platform/macos')
-rw-r--r-- | platform/macos/export/export_plugin.cpp | 2 |
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") == "") { |