Sort the existing variants list

This commit is contained in:
Roy Nieterau 2025-06-24 13:41:53 +02:00
parent 0d40d522d0
commit 9e7f5f5256

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)