diff --git a/libs/canvas/poly_item.cc b/libs/canvas/poly_item.cc index 55ebb46bd3..2500ac90e2 100644 --- a/libs/canvas/poly_item.cc +++ b/libs/canvas/poly_item.cc @@ -109,7 +109,7 @@ PolyItem::render_curve (Rect const & area, Cairo::RefPtr context } else { Duple c = item_to_window (Duple (i->x, i->y)); - context->move_to (i->x, i->y); + context->move_to (c.x, c.y); done_first = true; } }