Skip to content

Commit 122ec4a

Browse files
committed
Sort values of AUDIO_LANGUAGES alphabetically
1 parent 2db12b6 commit 122ec4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/view/main_window.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def _init_sidebar(self):
127127
self.omn_audio_language = ctk.CTkOptionMenu(master=self.frm_shared_options)
128128
CTkScrollableDropdown(
129129
attach=self.omn_audio_language,
130-
values=list(c.AUDIO_LANGUAGES.values()),
130+
values=sorted(list(c.AUDIO_LANGUAGES.values())),
131131
alpha=1,
132132
)
133133
self.omn_audio_language.grid(row=1, column=0, padx=20, pady=0, sticky=ctk.EW)

0 commit comments

Comments
 (0)