mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 14:58:13 +02:00
IDE, SourceEditor: fix scrolling to last line, when top-line hint changes. Ensure last line is fully scrolled in. Issue #37922
- The text-area LinesInWindow must be update before the TopLine is adjusted. Otherwise the editor calculates the wrong Max(TopLine) (prevent scrolling past end of text)
This commit is contained in:
parent
6e27366e54
commit
27882fd9cc
@ -1555,8 +1555,8 @@ begin
|
||||
FTopInfoDisplay.LineMapCount := ListCnt;
|
||||
|
||||
if ListCnt <> TSourceLazSynSurfaceManager(FPaintArea).TopLineCount then begin
|
||||
TopLine := t;
|
||||
TSourceLazSynSurfaceManager(FPaintArea).TopLineCount := ListCnt;
|
||||
TopLine := t;
|
||||
SizeOrFontChanged(FALSE);
|
||||
Invalidate; // TODO: move to PaintArea
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user