From 1caa75a7d21ec4847fdef7d490d33eeb626589b6 Mon Sep 17 00:00:00 2001 From: "Geoffrey D. Bennett" Date: Sun, 21 Jan 2024 12:34:43 +1030 Subject: [PATCH] Move 4th Gen Solo Air control up to be next to Inst control --- src/iface-mixer.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/iface-mixer.c b/src/iface-mixer.c index dcc465f..d69213e 100644 --- a/src/iface-mixer.c +++ b/src/iface-mixer.c @@ -317,6 +317,11 @@ static void create_input_controls_by_type( count++; } + // Don't increment row for 4th Gen Solo Inst control so Air control + // goes next to it + if (!strcmp(control, "Level Capture Enum") && count == 1) + return; + if (count) (*current_row)++; }