From 9e7f5f5256123d610a408c2734557faad22206c6 Mon Sep 17 00:00:00 2001 From: Roy Nieterau Date: Tue, 24 Jun 2025 13:41:53 +0200 Subject: [PATCH] Sort the existing variants list --- client/ayon_core/tools/publisher/widgets/create_widget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/ayon_core/tools/publisher/widgets/create_widget.py b/client/ayon_core/tools/publisher/widgets/create_widget.py index aecea2ec44..b9b3afd895 100644 --- a/client/ayon_core/tools/publisher/widgets/create_widget.py +++ b/client/ayon_core/tools/publisher/widgets/create_widget.py @@ -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)