From 2dd80e8314a11aa9b6bf009a862d97da13685a6a Mon Sep 17 00:00:00 2001 From: A_D Date: Fri, 28 May 2021 13:09:42 +0200 Subject: [PATCH] Set dropdown default to currently selected option --- plugins/coriolis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/coriolis.py b/plugins/coriolis.py index 9d9cae35..f98b0105 100644 --- a/plugins/coriolis.py +++ b/plugins/coriolis.py @@ -84,7 +84,7 @@ def plugin_prefs(parent: tk.Widget, cmdr: str, is_beta: bool) -> tk.Frame: nb.OptionMenu( conf_frame, override_textvar, - _('Auto'), + override_textvar.get(), _('Normal'), _('Beta'), _('Auto') ).grid(sticky=tk.W, row=cur_row, column=1, padx=PADX) cur_row += 1