summaryrefslogtreecommitdiff
path: root/gtk2_ardour/time_axis_view.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-12-10 21:06:29 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-12-10 21:06:29 +0000
commit737e40a56fa2d325b3b9dc2ca39f5b3b9be887a3 (patch)
tree6982994139d5f28a1cf78feb09543ed3ac3451ea /gtk2_ardour/time_axis_view.cc
parent014540a096fc9ce56a1510f90e394b20760a6978 (diff)
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
Diffstat (limited to 'gtk2_ardour/time_axis_view.cc')
-rw-r--r--gtk2_ardour/time_axis_view.cc8
1 files 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;
}