synedit: invalidate gutter when we add/remove debug marks

git-svn-id: trunk@18996 -
This commit is contained in:
paul 2009-03-15 06:10:47 +00:00
parent 4be10e123f
commit 0b6b0bc4ea

View File

@ -5003,11 +5003,13 @@ end;
procedure TCustomSynEdit.SetDebugMarks(AFirst, ALast: Integer);
begin
TSynEditStringList(fLines).SetDebugMarks(AFirst, ALast);
InvalidateGutterLines(AFirst, ALast);
end;
procedure TCustomSynEdit.ClearDebugMarks;
begin
TSynEditStringList(fLines).ClearDebugMarks;
InvalidateGutter;
end;
procedure TCustomSynEdit.UndoItem;