Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
[Automated] Merged develop into main
Browse files Browse the repository at this point in the history
  • Loading branch information
ynbot authored May 9, 2024
2 parents 2580437 + d4f8451 commit 1c22960
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ body:
label: Version
description: What version are you running? Look to OpenPype Tray
options:
- 3.18.10-nightly.2
- 3.18.10-nightly.1
- 3.18.9
- 3.18.9-nightly.11
Expand Down Expand Up @@ -134,7 +135,6 @@ body:
- 3.16.3-nightly.1
- 3.16.2
- 3.16.2-nightly.2
- 3.16.2-nightly.1
validations:
required: true
- type: dropdown
Expand Down
17 changes: 9 additions & 8 deletions openpype/hosts/maya/plugins/publish/extract_pointcache.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,15 +291,16 @@ def get_attribute_defs(cls):

enabled_flags = [x for x in flags if x in overrides]
flags = overrides - set(override_defs.keys())
defs.append(
EnumDef(
"flags",
flags,
default=enabled_flags,
multiselection=True,
label="Export Flags",
if flags:
defs.append(
EnumDef(
"flags",
flags,
default=enabled_flags,
multiselection=True,
label="Export Flags",
)
)
)

for key, value in override_defs.items():
if key not in overrides:
Expand Down

0 comments on commit 1c22960

Please sign in to comment.