ScatterDraw: Line characteristics fixed in Painter

git-svn-id: svn://ultimatepp.org/upp/trunk@11119 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
koldo 2017-05-25 10:24:02 +00:00
parent 39544a6dac
commit 06ff8a00ff

View file

@ -1213,6 +1213,8 @@ Image ScatterDraw::GetImage(const Size &size, int scale) {
ImageBuffer ib(scale*size);
BufferPainter bp(ib, mode);
bp.LineCap(LINECAP_SQUARE);
bp.LineJoin(LINEJOIN_MITER);
SetDrawing(bp, size, scale, false);
return ib;