mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 11:18:10 +02:00
SynEdit: fix calculation of scroll-range, to keep text-caret visible if at EOL
This commit is contained in:
parent
568a92fe1c
commit
ef3d4efc17
@ -8614,7 +8614,8 @@ begin
|
||||
//FScreenCaret.ClipRect := Rect(TextLeftPixelOffset(False), 0,
|
||||
// ClientWidth - TextRightPixelOffset - ScrollBarWidth + 1,
|
||||
// ClientHeight - ScrollBarWidth);
|
||||
FScreenCaret.ClipExtraPixel := FTextArea.Bounds.Right - FTextArea.Bounds.Left - CharsInWindow * CharWidth;
|
||||
// TextBounds.Left => account for padding
|
||||
FScreenCaret.ClipExtraPixel := FTextArea.Bounds.Right - FTextArea.TextBounds.Left - CharsInWindow * CharWidth;
|
||||
UpdateCaret;
|
||||
FScreenCaret.UnLock;
|
||||
|
||||
|
@ -3937,7 +3937,7 @@ var
|
||||
begin
|
||||
if FCharWidth = 0 then exit;
|
||||
OldExtraChars := FExtraLineChars;
|
||||
FExtraLineChars := Max(0, FExtraLinePixel - FClipExtraPixel + FCharWidth - 1)
|
||||
FExtraLineChars := Max(0, FExtraLinePixel - FClipExtraPixel + FCharWidth)
|
||||
div FCharWidth;
|
||||
if (FExtraLineChars <> OldExtraChars) and assigned(FOnExtraLineCharsChanged) then
|
||||
FOnExtraLineCharsChanged(Self);
|
||||
|
Loading…
Reference in New Issue
Block a user