mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-07 08:40:38 +02:00
TAChart: Fix a typo leading to excessive bounds culling in unordered series.
* Reported by Andrea Mauri git-svn-id: trunk@26041 -
This commit is contained in:
parent
6cf27772ce
commit
4dbdf21241
@ -348,7 +348,7 @@ begin
|
||||
while (ALB < Count) and (Item[ALB]^.X < AXMin) do
|
||||
Inc(ALB);
|
||||
AUB := Count - 1;
|
||||
while (AUB > 0) and (Item[AUB]^.X < AXMax) do
|
||||
while (AUB > 0) and (Item[AUB]^.X > AXMax) do
|
||||
Dec(AUB);
|
||||
end;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user