tvplanit: Fix Dayview not scrolling to the end of the day.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@4890 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2016-07-01 22:21:07 +00:00
parent 7a0869b6f0
commit 7e954aacab

View File

@@ -2045,7 +2045,7 @@ begin
cbSize := SizeOf(SI);
fMask := SIF_RANGE or SIF_PAGE or SIF_POS;
nMin := 0;
nMax := FLineCount;
nMax := FLineCount + 1;
if FVisibleLines >= FLineCount then
nPage := nMax
else