mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Change back ground color for foldback strip
This commit is contained in:
parent
fdcddc736b
commit
c992a601ae
4 changed files with 18 additions and 5 deletions
|
|
@ -242,12 +242,13 @@ FoldbackStrip::init ()
|
|||
output_button.set_text (_("Output"));
|
||||
output_button.set_name ("mixer strip button");
|
||||
|
||||
send_scroller.set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
|
||||
send_scroller.add (send_display);
|
||||
|
||||
send_display.set_flags (CAN_FOCUS);
|
||||
send_display.set_spacing (4);
|
||||
|
||||
send_scroller.set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
|
||||
send_scroller.add (send_display);
|
||||
send_scroller.get_child()->set_name ("FoldbackBusStripBase");
|
||||
|
||||
insert_box = new ProcessorBox (0, boost::bind (&FoldbackStrip::plugin_selector, this), _pr_selection, 0);
|
||||
insert_box->set_no_show_all ();
|
||||
insert_box->show ();
|
||||
|
|
@ -266,6 +267,7 @@ FoldbackStrip::init ()
|
|||
level_table.set_spacings (20);
|
||||
level_table.set_row_spacings (20);
|
||||
level_table.set_homogeneous (true);
|
||||
level_table.set_name ("FoldbackBusStripBase");
|
||||
|
||||
mute_solo_table.set_homogeneous (true);
|
||||
mute_solo_table.set_spacings (2);
|
||||
|
|
@ -1349,7 +1351,7 @@ void
|
|||
FoldbackStrip::reset_strip_style ()
|
||||
{
|
||||
if (_route->active()) {
|
||||
set_name ("AudioBusStripBase");
|
||||
set_name ("FoldbackBusStripBase");
|
||||
} else {
|
||||
set_name ("AudioBusStripBaseInactive");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue