You've already forked lazarus-ccr
PowerPDF: fix PRLabel center and right justify, from zacheus, issue 21154
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2376 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -1819,8 +1819,8 @@ begin
|
||||
tmpWidth := PdfCanvas.TextWidth(FText);
|
||||
|
||||
case FAlignment of
|
||||
taCenter: XPos := Round((Width - tmpWidth) / 2);
|
||||
taRightJustify: XPos :=Width - Round(tmpWidth);
|
||||
taCenter: XPos := Round((Self.Width - tmpWidth) / 2);
|
||||
taRightJustify: XPos :=Self.Width - Round(tmpWidth);
|
||||
else
|
||||
XPos := 0;
|
||||
end;
|
||||
|
Reference in New Issue
Block a user