summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mainsbridge <beatroute@iprimus.com.au>2008-11-11 08:55:28 +0000
committerNick Mainsbridge <beatroute@iprimus.com.au>2008-11-11 08:55:28 +0000
commit4e1f42e83d21b7c99aa8ef535fd184b9fe7cd43b (patch)
tree99f666e83617d05cd90e989922c3947bdb50b205
parent86f0b172ba4b3f806352c81c1c825f88f60d5805 (diff)
Use a better size for automation base rect.
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4138 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--gtk2_ardour/automation_time_axis.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/automation_time_axis.cc b/gtk2_ardour/automation_time_axis.cc
index cc54e9993a..9bde6da4c2 100644
--- a/gtk2_ardour/automation_time_axis.cc
+++ b/gtk2_ardour/automation_time_axis.cc
@@ -73,7 +73,7 @@ AutomationTimeAxisView::AutomationTimeAxisView (Session& s, boost::shared_ptr<Ro
base_rect = new SimpleRect(*canvas_display);
base_rect->property_x1() = 0.0;
base_rect->property_y1() = 0.0;
- base_rect->property_x2() = LONG_MAX / 2;
+ base_rect->property_x2() = LONG_MAX - 2;
base_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_AutomationTrackOutline.get();
/* outline ends and bottom */
base_rect->property_outline_what() = (guint32) (0x1|0x2|0x8);