mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-04 20:55:48 +01:00
display separator on newly created tracks.
This commit is contained in:
parent
56a4e2ee15
commit
4b39813d69
1 changed files with 3 additions and 1 deletions
|
|
@ -134,6 +134,8 @@ TimeAxisView::TimeAxisView (ARDOUR::Session* sess, PublicEditor& ed, TimeAxisVie
|
|||
controls_table.set_no_show_all ();
|
||||
|
||||
HSeparator* separator = manage (new HSeparator());
|
||||
separator->set_size_request(-1, 1);
|
||||
separator->show();
|
||||
|
||||
controls_vbox.pack_start (controls_table, false, false);
|
||||
controls_vbox.show ();
|
||||
|
|
@ -159,8 +161,8 @@ TimeAxisView::TimeAxisView (ARDOUR::Session* sess, PublicEditor& ed, TimeAxisVie
|
|||
controls_ebox.signal_leave_notify_event().connect (sigc::mem_fun (*this, &TimeAxisView::controls_ebox_leave));
|
||||
controls_ebox.show ();
|
||||
|
||||
time_axis_vbox.pack_end (*separator, false, false);
|
||||
time_axis_vbox.pack_start (controls_ebox, true, true, 0);
|
||||
time_axis_vbox.pack_end (*separator, false, false);
|
||||
time_axis_vbox.show();
|
||||
|
||||
ColorsChanged.connect (sigc::mem_fun (*this, &TimeAxisView::color_handler));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue