Update mixer strip colours when route active state changes

(#4439).


git-svn-id: svn://localhost/ardour2/branches/3.0@10429 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-11-03 17:49:12 +00:00
parent eff5781ee1
commit 712d7fd5e4
2 changed files with 7 additions and 0 deletions

View file

@ -2071,3 +2071,9 @@ MixerStrip::add_output_port (DataType t)
{ {
_route->output()->add_port ("", this, t); _route->output()->add_port ("", this, t);
} }
void
MixerStrip::route_active_changed ()
{
reset_strip_style ();
}

View file

@ -121,6 +121,7 @@ class MixerStrip : public RouteUI, public Gtk::EventBox
std::string state_id() const; std::string state_id() const;
void parameter_changed (std::string); void parameter_changed (std::string);
void route_active_changed ();
protected: protected:
friend class Mixer_UI; friend class Mixer_UI;