From 3d976c5b727e4d55ce439b1d7c055a814477fa1a Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 18 Sep 2008 17:42:11 +0000 Subject: [PATCH] Fix placement of automation child tracks. git-svn-id: svn://localhost/ardour2/branches/3.0@3753 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/time_axis_view.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/time_axis_view.cc b/gtk2_ardour/time_axis_view.cc index 1ff6b3d363..f31ee1a10c 100644 --- a/gtk2_ardour/time_axis_view.cc +++ b/gtk2_ardour/time_axis_view.cc @@ -1046,8 +1046,8 @@ TimeAxisView::compute_controls_size_info () Gtk::Table one_row_table (1, 8); Button* buttons[5]; const int border_width = 2; - const int extra_height = (2 * border_width); - + 2 // 2 pixels for the hseparator between TimeAxisView control areas + const int extra_height = (2 * border_width) + //+ 2 // 2 pixels for the hseparator between TimeAxisView control areas + 10; // resizer button (3 x 2 pixel elements + 2 x 2 pixel gaps) window.add (one_row_table);