diff --git a/src/iface-mixer.c b/src/iface-mixer.c index 2905ff7..f7c6be0 100644 --- a/src/iface-mixer.c +++ b/src/iface-mixer.c @@ -260,8 +260,13 @@ static void create_input_link_control( int from, to; get_two_num_from_string(elem->name, &from, &to); + + // skip even numbers + if (!(from % 2)) + return; + if (to == -1) - to = from; + to = from + 1; gtk_grid_attach(GTK_GRID(grid), w, from - 1, current_row, to - from + 1, 1); }