TAChart: Fix font scaling of CanvasDrawer.

git-svn-id: trunk@60310 -
This commit is contained in:
wp 2019-02-02 23:39:44 +00:00
parent 7787d285fd
commit 790027cd13

View File

@ -377,7 +377,9 @@ begin
if FMonochromeColor <> clTAColor then
Color := FMonochromeColor;
if scaleFont in FScaleItems then
Size := Scale(IfThen(Size = 0, DEFAULT_FONT_SIZE, Size));
Size := Scale(GetFontSize)
else
Size := GetFontSize;
end;
end;