ui: mixer: remove extraneous outline around strip processor list

This commit is contained in:
jean-emmanuel 2023-12-11 01:02:40 +01:00
parent b8317c9b87
commit bf0d73b3f1
2 changed files with 8 additions and 0 deletions

View File

@ -967,6 +967,12 @@ style "processor_list" = "very_small_text"
bg[ACTIVE] = shade (1.8, @fg_selected)
fg[ACTIVE] = @bases
}
style "processor_scroller"
{
bg[ACTIVE] = @bases
ythickness = 1
xthickness = 0
}
# MixerPanZone:
#
@ -1255,6 +1261,7 @@ widget "*LocationEditRemoveButton*" style:highest "location_row_button"
widget "*ChannelCountSelector" style:highest "medium_bold_entry"
widget "*RegionListWholeFile" style:highest "treeview_parent_node"
widget "*ProcessorList*" style:highest "processor_list"
widget "*ProcessorScroller*" style:highest "processor_scroller"
widget "*PortMatrixLabel*" style:highest "small_text"
widget "*MainMenuBar" style:highest "status_bar_box"
widget "*midi device" style:highest "midi_device"

View File

@ -1961,6 +1961,7 @@ ProcessorBox::ProcessorBox (ARDOUR::Session* sess, boost::function<PluginSelecto
no_processor_redisplay = false;
processor_scroller.set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
processor_scroller.set_name ("ProcessorScroller");
processor_scroller.add (processor_display);
pack_start (processor_scroller, true, true);