Monitor Section: Add a spacer so the topmost buttons are not visually grouped with...
authorBen Loftis <ben@harrisonconsoles.com>
Tue, 10 Dec 2019 20:35:03 +0000 (14:35 -0600)
committerBen Loftis <ben@harrisonconsoles.com>
Tue, 10 Dec 2019 20:35:03 +0000 (14:35 -0600)
gtk2_ardour/monitor_section.cc

index ee475ee80eef1b6e202d5ec4cc02c597ed8aa97d..8c24afe56841dc5cf439f0111e49d0251e680ef6 100644 (file)
@@ -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));