diff options
| -rw-r--r-- | src/LineMarker.cxx | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/LineMarker.cxx b/src/LineMarker.cxx index b97c9fd5a..73410e2cd 100644 --- a/src/LineMarker.cxx +++ b/src/LineMarker.cxx @@ -186,7 +186,7 @@ void LineMarker::Draw(Surface *surface, PRectangle &rcWhole, Font &fontForCharac  	} else if (markType == SC_MARK_VLINE) {  		surface->PenColour(body.allocated); -		surface->MoveTo(centreX, rcWhole.top); +		surface->MoveTo(centreX, rcWhole.top + blobSize - (rcWhole.bottom - rcWhole.top)/2);  		surface->LineTo(centreX, rcWhole.bottom);  	} else if (markType == SC_MARK_LCORNER) { | 
