[macOS] Fix export button incorrectly disabled when using login/app password for notarization.

This commit is contained in:
bruvzg 2022-11-30 10:38:53 +02:00
parent 5826e96014
commit aa117a128e
No known key found for this signature in database
GPG Key ID: 7960FCF39844EC38

View File

@ -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") == "") {