From 737e40a56fa2d325b3b9dc2ca39f5b3b9be887a3 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 10 Dec 2012 21:06:29 +0000 Subject: [PATCH] add 10 pixels of track height to facilitate easier grabbing of the track headers for resizing git-svn-id: svn://localhost/ardour2/branches/3.0@13632 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/time_axis_view.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gtk2_ardour/time_axis_view.cc b/gtk2_ardour/time_axis_view.cc index ee5c7c1c2a..6f3d0c17bd 100644 --- a/gtk2_ardour/time_axis_view.cc +++ b/gtk2_ardour/time_axis_view.cc @@ -1249,13 +1249,13 @@ TimeAxisView::preset_height (Height h) { switch (h) { case HeightLargest: - return (button_height * 2) + extra_height + 250; + return (button_height * 2) + extra_height + 260; case HeightLarger: - return (button_height * 2) + extra_height + 150; + return (button_height * 2) + extra_height + 160; case HeightLarge: - return (button_height * 2) + extra_height + 50; + return (button_height * 2) + extra_height + 60; case HeightNormal: - return (button_height * 2) + extra_height; + return (button_height * 2) + extra_height + 10; case HeightSmall: return button_height + extra_height; }