Skip to content

Commit 867563a

Browse files
committed
Put gain mode inside the aquisition group on the GUI
1 parent 301efb2 commit 867563a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/fastcs_jungfrau/jungfrau_controller.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,9 @@ class JungfrauController(Controller):
297297
group=ACQUISITION,
298298
)
299299
gain_mode = AttrRW(
300-
Enum(GainMode), handler=EnumHandler(GAIN_MODE_MAPPING, GainMode, "gainmode")
300+
Enum(GainMode),
301+
handler=EnumHandler(GAIN_MODE_MAPPING, GainMode, "gainmode"),
302+
group=ACQUISITION,
301303
)
302304

303305
def __init__(self, config_file_path) -> None:

0 commit comments

Comments
 (0)