make top_event_box of mixer strip show per-route color whether or not the route is a track or a bus (Valeriy)

This commit is contained in:
Paul Davis
2014-02-11 11:57:13 -05:00
parent f8ed1bbcf4
commit 9be3bfa687

View File

@@ -992,18 +992,11 @@ MixerStrip::maybe_add_bundle_to_output_menu (boost::shared_ptr<Bundle> b, ARDOUR
void
MixerStrip::update_diskstream_display ()
{
if (is_track()) {
if (is_track() && input_selector) {
input_selector->hide_all ();
}
if (input_selector) {
input_selector->hide_all ();
}
route_color_changed ();
} else {
show_passthru_color ();
}
route_color_changed ();
}
void