mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-26 23:03:48 +02:00
LCL: fixed copy paste error in post script commands (issue #13954)
git-svn-id: trunk@20574 -
This commit is contained in:
parent
27e9f727e6
commit
041e562503
@ -1474,7 +1474,7 @@ begin
|
||||
SetPosition(X1,Y1);
|
||||
pp:=TranslateCoord(X1,Y1);
|
||||
|
||||
write(Format('%f %f domoveto',[pp.fx,pp.fy],FFs));
|
||||
write(Format('%f %f moveto',[pp.fx,pp.fy],FFs));
|
||||
end;
|
||||
|
||||
//Drawe line
|
||||
@ -1490,7 +1490,7 @@ begin
|
||||
UpdateLineColor(clNone);
|
||||
UpdateLineWidth;
|
||||
UpdateLineStyle;
|
||||
write(Format('%f %f Dolineto',[pp.fx,pp.fy],FFs));
|
||||
write(Format('%f %f lineto',[pp.fx,pp.fy],FFs));
|
||||
changed;
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user