From 8584ea75d1cbb6ea676a9929dc228e943b122f77 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Sat, 10 Feb 2018 07:51:28 -0600 Subject: Cairo-fix cursor lines so they align perfectly with Rulers, Grids, and region edges. --- gtk2_ardour/editor_cursors.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gtk2_ardour') diff --git a/gtk2_ardour/editor_cursors.cc b/gtk2_ardour/editor_cursors.cc index 7f39cbe175..3df7761007 100644 --- a/gtk2_ardour/editor_cursors.cc +++ b/gtk2_ardour/editor_cursors.cc @@ -82,7 +82,7 @@ EditorCursor::set_position (samplepos_t sample) double const new_pos = _editor.sample_to_pixel_unrounded (sample); if (rint(new_pos) != rint(_track_canvas_item->x ())) { - _track_canvas_item->set_x (new_pos); + _track_canvas_item->set_x (new_pos-0.5); //accommodate the 1/2 pixel "line" offset in cairo } _current_sample = sample; -- cgit v1.2.3