From 73a91485cc615fd3ededafd75e3ba401c77ab04a Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Wed, 27 Jul 2022 12:32:19 +0200 Subject: [PATCH] remove the update button for now --- slic/gui/daqpanels/config.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/slic/gui/daqpanels/config.py b/slic/gui/daqpanels/config.py index aca690da..05359613 100644 --- a/slic/gui/daqpanels/config.py +++ b/slic/gui/daqpanels/config.py @@ -59,12 +59,13 @@ class ConfigPanel(wx.Panel): le_instrument = LabeledEntry(self, label="Instrument", value=instrument) le_pgroup = LabeledEntry(self, label="pgroup", value=pgroup) - btn_update = wx.Button(self, label="Update!") +# btn_update = wx.Button(self, label="Update!") + btn_update = STRETCH #TODO: place a stretch space instead of the button until the button does something #TODO: disabled until working le_instrument.Disable() le_pgroup.Disable() - btn_update.Disable() +# btn_update.Disable() # sizers: widgets = (btn_chans_det, btn_chans_bsc, btn_chans_pvs)