mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-23 13:59:24 +01: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);
|
Push(v, i);
|
||||||
li := i;
|
li := i;
|
||||||
end;
|
end;
|
||||||
if not InRange(v, AParams.FMin, AParams.FMax) then
|
if li < Count - 1 then
|
||||||
Push(v, li);
|
with Item[li + 1]^ do
|
||||||
|
Push(IfThen(AParams.FUseY, Y, X), li + 1);
|
||||||
SetLength(AValues, cnt);
|
SetLength(AValues, cnt);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user