mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
Merge pull request #1337 from BigRoy/enhancement/publisher_existing_variants_sorted
Publisher: Variant name picker sort the existing variants list
This commit is contained in:
commit
95b7379b3e
1 changed files with 1 additions and 1 deletions
|
|
@ -683,7 +683,7 @@ class CreateWidget(QtWidgets.QWidget):
|
|||
options = list(self._current_creator_variant_hints)
|
||||
if options:
|
||||
options.append("---")
|
||||
options.extend(variant_hints)
|
||||
options.extend(sorted(variant_hints))
|
||||
# Add hints to actions
|
||||
self._variant_widget.set_options(options)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue