From 4c398b0ad764ea472bb3f2623d60dc55c3d31b1f Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 23 May 2012 15:47:28 +0000 Subject: [PATCH] Nudge markers up one pixel (should fix #4620). git-svn-id: svn://localhost/ardour2/branches/3.0@12394 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/marker.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;