SynEdit: Update OverviewGutter, if mark moves to new line. Part of issue #0023656

git-svn-id: trunk@40211 -
This commit is contained in:
martin 2013-02-08 21:50:44 +00:00
parent bee75f597a
commit 49aa229bbc

View File

@ -1152,7 +1152,10 @@ begin
else
if (smcrLine in Changes) then begin
i := IndexOfSynMark(Sender);
if i >= 0 then FMarkList[i].FLine := Sender.Line;
if i >= 0 then begin
FMarkList[i].FLine := Sender.Line;
FMarkList[i].DoChange;
end;
FMarkList.ReSort;
InvalidateTextLines(0, TextBuffer.Count); // Todo
end