mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-27 11:40:29 +02:00
TAChart: Fix color map series accidentally broken in r39173 #e4d8203192
git-svn-id: trunk@39178 -
This commit is contained in:
parent
5cf2ee259a
commit
c3bf972233
@ -1393,7 +1393,7 @@ begin
|
||||
ADrawer.BrushColor := ColorByValue(v);
|
||||
ADrawer.Rectangle(
|
||||
Max(pt.X, r.Left), Max(pt.Y, r.Top),
|
||||
Min(next.X, r.Right + 1), Min(next.Y, r.Bottom + 1));
|
||||
Min(next.X, r.Right) + 1, Min(next.Y, r.Bottom) + 1);
|
||||
pt.X := next.X;
|
||||
end;
|
||||
pt.Y := next.Y;
|
||||
|
Loading…
Reference in New Issue
Block a user