From d2032df2e534f8413e7ff12ff9badb096131a6b7 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Sat, 4 Apr 2020 10:54:33 -0500 Subject: [PATCH] Fix for Editor-mixer-strip: polarity buttons were not updating with route selection changes. --- gtk2_ardour/route_ui.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gtk2_ardour/route_ui.cc b/gtk2_ardour/route_ui.cc index 0d7110f87d..6b879755c6 100644 --- a/gtk2_ardour/route_ui.cc +++ b/gtk2_ardour/route_ui.cc @@ -2015,6 +2015,8 @@ RouteUI::setup_invert_buttons () uint32_t const N = _route ? _route->phase_control()->size() : 0; if (_n_polarity_invert == N) { + /* buttons are already setup for this strip, but we should still set the values */ + update_polarity_display (); return; } _n_polarity_invert = N;