diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/LineMarker.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/LineMarker.cxx b/src/LineMarker.cxx index ab0511654..f79c3c085 100644 --- a/src/LineMarker.cxx +++ b/src/LineMarker.cxx @@ -299,6 +299,10 @@ void LineMarker::Draw(Surface *surface, PRectangle &rcWhole, Font &fontForCharac }; surface->Polygon(pts, sizeof(pts) / sizeof(pts[0]), fore.allocated, back.allocated); + } else if (markType == SC_MARK_LEFTRECT) { + PRectangle rcLeft = rcWhole; + rcLeft.right = rcLeft.left + 4; + surface->FillRectangle(rcLeft, back.allocated); } else { // SC_MARK_FULLRECT surface->FillRectangle(rcWhole, back.allocated); } |