mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-23 09:19:17 +02:00
TAChart: Fix minor marks after the last mark provided by the list source
git-svn-id: trunk@31911 -
This commit is contained in:
parent
d7a3cef84d
commit
cdbd6d7fc4
@ -617,8 +617,9 @@ begin
|
||||
Push(v, i);
|
||||
li := i;
|
||||
end;
|
||||
if not InRange(v, AParams.FMin, AParams.FMax) then
|
||||
Push(v, li);
|
||||
if li < Count - 1 then
|
||||
with Item[li + 1]^ do
|
||||
Push(IfThen(AParams.FUseY, Y, X), li + 1);
|
||||
SetLength(AValues, cnt);
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user