diff --git a/ph_rando/ui/gui.py b/ph_rando/ui/gui.py index 51ffaf23..7a6bbeeb 100644 --- a/ph_rando/ui/gui.py +++ b/ph_rando/ui/gui.py @@ -168,6 +168,7 @@ def _on_chbox_change(checkbox: QCheckBox, setting: str) -> None: comboxbox = QComboBox() comboxbox.addItems([inflection.titleize(s) for s in setting.choices]) comboxbox.setEnabled(setting.supported) + comboxbox.setCurrentText(setting.default) internal_hbox.addWidget(comboxbox) internal_hbox.addWidget(comboxbox_label)