Bodge around visual glitch where the ranges & markers list would overlap the editor's RHS tabs.

git-svn-id: svn://localhost/ardour2/branches/3.0@6162 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2009-11-24 00:06:12 +00:00
parent ad7eb67a13
commit 911fdb576e
2 changed files with 10 additions and 2 deletions

View File

@ -595,9 +595,15 @@ LocationUI::LocationUI ()
add_location_button.set_image (*Gtk::manage (new Gtk::Image (Gtk::Stock::ADD, Gtk::ICON_SIZE_BUTTON)));
add_range_button.set_image (*Gtk::manage (new Gtk::Image (Gtk::Stock::ADD, Gtk::ICON_SIZE_BUTTON)));
loop_punch_box.pack_start (loop_edit_row, false, false);
loop_punch_box.pack_start (punch_edit_row, false, false);
location_vpacker.pack_start (loop_edit_row, false, false);
location_vpacker.pack_start (punch_edit_row, false, false);
loop_punch_scroller.add (loop_punch_box);
loop_punch_scroller.set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_NEVER);
loop_punch_scroller.set_shadow_type (Gtk::SHADOW_NONE);
location_vpacker.pack_start (loop_punch_scroller, false, false);
location_rows.set_name("LocationLocRows");
location_rows_scroller.add (location_rows);

View File

@ -163,6 +163,8 @@ class LocationUI : public Gtk::HBox
LocationEditRow loop_edit_row;
LocationEditRow punch_edit_row;
Gtk::VBox loop_punch_box;
Gtk::ScrolledWindow loop_punch_scroller;
Gtk::VPaned loc_range_panes;