diff options
| author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-08-09 18:51:43 +0300 |
|---|---|---|
| committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-08-26 14:23:31 +0300 |
| commit | d91cb1d5d57de970d027ffbd46b41cfd847c10dc (patch) | |
| tree | 582168305780bc4a7631bb83eecc0f308a34a68c /editor/export/editor_export_platform.cpp | |
| parent | dc4193b478dec409132bf50d90fdb4c6760a109a (diff) | |
| download | redot-engine-d91cb1d5d57de970d027ffbd46b41cfd847c10dc.tar.gz | |
[macOS export] Simplify code signing options, add support for rcodesign tool for signing and notarization.
Diffstat (limited to 'editor/export/editor_export_platform.cpp')
| -rw-r--r-- | editor/export/editor_export_platform.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/export/editor_export_platform.cpp b/editor/export/editor_export_platform.cpp index ab1586cb77..8283c24e61 100644 --- a/editor/export/editor_export_platform.cpp +++ b/editor/export/editor_export_platform.cpp @@ -323,6 +323,7 @@ Ref<EditorExportPreset> EditorExportPlatform::create_preset() { for (const ExportOption &E : options) { preset->properties.push_back(E.option); preset->values[E.option.name] = E.default_value; + preset->update_visibility[E.option.name] = E.update_visibility; } return preset; |
