summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gtk2_ardour/mixer_strip.cc6
-rw-r--r--gtk2_ardour/mixer_strip.h1
2 files changed, 7 insertions, 0 deletions
diff --git a/gtk2_ardour/mixer_strip.cc b/gtk2_ardour/mixer_strip.cc
index 9a7a447e46..f767396308 100644
--- a/gtk2_ardour/mixer_strip.cc
+++ b/gtk2_ardour/mixer_strip.cc
@@ -2071,3 +2071,9 @@ MixerStrip::add_output_port (DataType t)
{
_route->output()->add_port ("", this, t);
}
+
+void
+MixerStrip::route_active_changed ()
+{
+ reset_strip_style ();
+}
diff --git a/gtk2_ardour/mixer_strip.h b/gtk2_ardour/mixer_strip.h
index f0b7f27086..14d89fa1b0 100644
--- a/gtk2_ardour/mixer_strip.h
+++ b/gtk2_ardour/mixer_strip.h
@@ -121,6 +121,7 @@ class MixerStrip : public RouteUI, public Gtk::EventBox
std::string state_id() const;
void parameter_changed (std::string);
+ void route_active_changed ();
protected:
friend class Mixer_UI;