From 9a439bdae25d0bde6a005d37f30e1e4bfb8e9d97 Mon Sep 17 00:00:00 2001 From: David Hammer <dhammer@mailbox.org> Date: Sun, 6 Feb 2022 20:29:04 +0100 Subject: [PATCH] Making downsampling comboboxes editable --- src/calng/scenes.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/calng/scenes.py b/src/calng/scenes.py index f9669225..2d714f9d 100644 --- a/src/calng/scenes.py +++ b/src/calng/scenes.py @@ -561,6 +561,7 @@ class AssemblerDeviceStatus(VerticalLayout): keys=[f"{device_id}.downsamplingFactor"], width=7 * BASE_INC, height=BASE_INC, + klass="EditableComboBox", ), padding=0, ), @@ -574,6 +575,7 @@ class AssemblerDeviceStatus(VerticalLayout): keys=[f"{device_id}.downsamplingFunction"], width=7 * BASE_INC, height=BASE_INC, + klass="EditableComboBox", ), padding=0, ), -- GitLab