Merged revision(s) 56234 #7a60c60d61 from trunk:

SynEdit: fix mark gutter, calculating width of mark-image
........

git-svn-id: branches/fixes_1_8@56241 -
This commit is contained in:
maxim 2017-10-29 22:19:08 +00:00
parent 8be695250e
commit 30f547a480

View File

@ -155,7 +155,7 @@ begin
then begin
// leave one column empty
MarkRect.Left := MarkRect.Right;
MarkRect.Right := Max(MarkRect.Right + FColumnWidth, AClip.Right);
MarkRect.Right := Min(MarkRect.Right + FColumnWidth, AClip.Right);
end;
DoPaintMark(MLine[j], MarkRect);