Skip to content

Commit

Permalink
[macOS] Fix export button incorrectly disabled when using login/app p…
Browse files Browse the repository at this point in the history
…assword for notarization.
  • Loading branch information
bruvzg committed Nov 30, 2022
1 parent 5826e96 commit aa117a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/macos/export/export_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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") == "") {
Expand Down

0 comments on commit aa117a1

Please sign in to comment.