mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 08:36:32 +01:00
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:
parent
eff5781ee1
commit
712d7fd5e4
2 changed files with 7 additions and 0 deletions
|
|
@ -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 ();
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue