mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-15 23:59:12 +02:00
SynEdit: Remove not required invalidation (paint / call to wrong Update() )
git-svn-id: trunk@37134 -
This commit is contained in:
parent
3cb8b0d420
commit
e0f4578cde
@ -6396,14 +6396,12 @@ begin
|
||||
LeftChar := LeftChar - 1;
|
||||
if CaretX > LeftChar + CharsInWindow then
|
||||
CaretX := LeftChar + CharsInWindow;
|
||||
Update;
|
||||
end;
|
||||
ecScrollRight:
|
||||
begin
|
||||
LeftChar := LeftChar + 1;
|
||||
if CaretX < LeftChar then
|
||||
CaretX := LeftChar;
|
||||
Update;
|
||||
end;
|
||||
ecInsertMode:
|
||||
begin
|
||||
|
Loading…
Reference in New Issue
Block a user