canvas/source/cairo/cairo_canvashelper.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit efa14d5943ec504fdcb02bd1b98d3a3189022e11 Author: Jan Holesovsky <[email protected]> Date: Wed Nov 27 13:11:04 2013 +0100 cairo canvas: Line dashing size depends on the line width. Change-Id: I6a3f563b6effd37b448ec3e8463a87879e0566d4 diff --git a/canvas/source/cairo/cairo_canvashelper.cxx b/canvas/source/cairo/cairo_canvashelper.cxx index cbda60a..27f31de 100644 --- a/canvas/source/cairo/cairo_canvashelper.cxx +++ b/canvas/source/cairo/cairo_canvashelper.cxx @@ -1231,7 +1231,7 @@ namespace cairocanvas { double* pDashArray = new double[ strokeAttributes.DashArray.getLength() ]; for( sal_Int32 i=0; i<strokeAttributes.DashArray.getLength(); i++ ) - pDashArray[i]=strokeAttributes.DashArray[i]; + pDashArray[i] = strokeAttributes.DashArray[i] * w; cairo_set_dash( mpCairo.get(), pDashArray, strokeAttributes.DashArray.getLength(), 0 ); delete[] pDashArray; } _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
