Improves the situation for files with small details which need a huge zoom

git-svn-id: trunk@36817 -
This commit is contained in:
sekelsenmat 2012-04-16 14:18:16 +00:00
parent bb35556ee3
commit 82de387f29

View File

@ -124,6 +124,8 @@ begin
ADest.Pen.Style := CurPath.Pen.Style;
ADest.Pen.Width := Round(CurPath.Pen.Width * AMulX);
if ADest.Pen.Width < 1 then ADest.Pen.Width := 1;
if (CurPath.Pen.Width <= 2) and (ADest.Pen.Width > 2) then ADest.Pen.Width := 2;
if (CurPath.Pen.Width <= 5) and (ADest.Pen.Width > 5) then ADest.Pen.Width := 5;
ADest.Pen.FPColor := CurPath.Pen.Color;
ADest.Brush.FPColor := CurPath.Brush.Color;