Commit 790e4c6a authored by Maciej Suminski's avatar Maciej Suminski

Fixed tracks drawing using Cairo backend with caching turned on.

parent b70adc5f
......@@ -263,7 +263,7 @@ void CAIRO_GAL::DrawSegment( const VECTOR2D& aStartPoint, const VECTOR2D& aEndPo
if( isFillEnabled )
{
cairo_set_line_width( cairoImage, aWidth );
SetLineWidth( aWidth );
cairo_move_to( cairoImage, (double) aStartPoint.x, (double) aStartPoint.y );
cairo_line_to( cairoImage, (double) aEndPoint.x, (double) aEndPoint.y );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment