mirror of
https://github.com/bec-project/bec_widgets.git
synced 2025-07-14 11:41:49 +02:00
fix(device_combobox): set minimum size to 125px
This commit is contained in:
@ -34,7 +34,7 @@ class DeviceComboBox(DeviceInputBase, QComboBox):
|
|||||||
):
|
):
|
||||||
super().__init__(client=client, config=config, gui_id=gui_id)
|
super().__init__(client=client, config=config, gui_id=gui_id)
|
||||||
QComboBox.__init__(self, parent=parent)
|
QComboBox.__init__(self, parent=parent)
|
||||||
|
self.setMinimumSize(125, 26)
|
||||||
self.populate_combobox()
|
self.populate_combobox()
|
||||||
|
|
||||||
if arg_name is not None:
|
if arg_name is not None:
|
||||||
|
Reference in New Issue
Block a user