summaryrefslogtreecommitdiff
path: root/gtk2_ardour/monitor_section.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2019-12-10 14:35:03 -0600
committerBen Loftis <ben@harrisonconsoles.com>2019-12-10 14:35:03 -0600
commita660ab25846e74281c46f063b226487f8da84953 (patch)
tree06a0de3124ede89237720d226678e144c8249419 /gtk2_ardour/monitor_section.cc
parent50d118f8b12535def3883d63f2042bf1f286c17f (diff)
Monitor Section: Add a spacer so the topmost buttons are not visually grouped with buttons in the editor toolbar.
Diffstat (limited to 'gtk2_ardour/monitor_section.cc')
-rw-r--r--gtk2_ardour/monitor_section.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk2_ardour/monitor_section.cc b/gtk2_ardour/monitor_section.cc
index ee475ee80e..8c24afe568 100644
--- a/gtk2_ardour/monitor_section.cc
+++ b/gtk2_ardour/monitor_section.cc
@@ -341,6 +341,8 @@ MonitorSection::MonitorSection ()
* LAYOUT top to bottom
*/
+ Gtk::Label *top_spacer = manage (new Gtk::Label);
+
// solo, iso information
HBox* rude_box = manage (new HBox);
rude_box->set_spacing (PX_SCALE(4));
@@ -430,6 +432,7 @@ MonitorSection::MonitorSection ()
* TOP LEVEL LAYOUT
*/
vpacker.set_border_width (PX_SCALE(3));
+ vpacker.pack_start (*top_spacer, false, false, PX_SCALE(3));
vpacker.pack_start (*rude_box, false, false, PX_SCALE(3));
vpacker.pack_start (rude_audition_button, false, false, 0);
vpacker.pack_start (*solo_tbl, false, false, PX_SCALE(8));