From b32ee58cf19f6c2bd1a05dc73ff6315129e52177 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Le=20Guyader?= <loic.le.guyader@xfel.eu> Date: Wed, 26 May 2021 14:49:46 +0200 Subject: [PATCH] fix issues with widgets --- TZPGcalc.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/TZPGcalc.py b/TZPGcalc.py index 27782c7..5c230b8 100644 --- a/TZPGcalc.py +++ b/TZPGcalc.py @@ -412,7 +412,7 @@ class TZPGcalc(): # TZPG part self.type = widgets.Dropdown( - options=TZPG_db.keys(), + options=list(TZPG_db), value='Custom', description='Type:', disabled=False @@ -581,14 +581,14 @@ class TZPGcalc(): tab1 = widgets.Accordion(children=[TZPGTab]) tab1.set_title(0, 'TZPG') - tab1.selected_index = None + tab1.selected_index = 0 tab2 = widgets.Accordion(children=[samTab]) tab2.set_title(0, 'sample') - tab2.selected_index = None + tab2.selected_index = 0 tab3 = widgets.Accordion(children=[detTab]) tab3.set_title(0, 'detector') - tab3.selected_index = None + tab3.selected_index = 0 self.control = VBox(children=[tab1, tab2, tab3, self.button]) -- GitLab