From 313b0b2ddd4d69b8d8b78f0db1af637d193c1451 Mon Sep 17 00:00:00 2001 From: jean-emmanuel Date: Wed, 13 Dec 2023 14:53:16 +0100 Subject: [PATCH] ui: mixer: clear strip selection when clicking on foldback bus number label, otherwise changing the bus' color will also affect whatever strip is currently selected (this is a more general issue however and should probabaly be addressed globally) --- gtk2_ardour/foldback_strip.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gtk2_ardour/foldback_strip.cc b/gtk2_ardour/foldback_strip.cc index 1bfea709e3..782884fd43 100644 --- a/gtk2_ardour/foldback_strip.cc +++ b/gtk2_ardour/foldback_strip.cc @@ -875,6 +875,8 @@ FoldbackStrip::name_button_button_press (GdkEventButton* ev) bool FoldbackStrip::number_button_press (GdkEventButton* ev) { + _mixer.select_none(); + if (ev->type == GDK_2BUTTON_PRESS) { choose_color (); return true;