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:
Jakub Trllo 2025-06-25 13:54:17 +02:00 committed by GitHub
commit 95b7379b3e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)