SynEdit: Remove not required invalidation (paint / call to wrong Update() )

git-svn-id: trunk@37134 -
This commit is contained in:
martin 2012-05-02 13:36:30 +00:00
parent 3cb8b0d420
commit e0f4578cde

View File

@ -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