summaryrefslogtreecommitdiff
path: root/gtk2_ardour/marker.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2012-05-23 15:47:28 +0000
committerCarl Hetherington <carl@carlh.net>2012-05-23 15:47:28 +0000
commit4c398b0ad764ea472bb3f2623d60dc55c3d31b1f (patch)
tree3d0ec4703463ea4d12bd585043bed41e8f13e45e /gtk2_ardour/marker.cc
parent8468f8bb459cb19edc3435feaa030ce33f0dabde (diff)
Nudge markers up one pixel (should fix #4620).
git-svn-id: svn://localhost/ardour2/branches/3.0@12394 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/marker.cc')
-rw-r--r--gtk2_ardour/marker.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/marker.cc b/gtk2_ardour/marker.cc
index 351267af54..27fa9f5d42 100644
--- a/gtk2_ardour/marker.cc
+++ b/gtk2_ardour/marker.cc
@@ -235,7 +235,7 @@ Marker::Marker (PublicEditor& ed, ArdourCanvas::Group& parent, guint32 rgba, con
unit_position = editor.frame_to_unit (frame);
unit_position -= _shift;
- group = new Group (parent, unit_position, 1.0);
+ group = new Group (parent, unit_position, 0);
_name_background = new ArdourCanvas::SimpleRect (*group);
_name_background->property_outline_pixels() = 1;