diff options
author | nyamatongwe <unknown> | 2011-04-27 12:47:18 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-04-27 12:47:18 +1000 |
commit | faf8032d98758218e2ae4dd1380aa6e4ecded41d (patch) | |
tree | 899463f231dff818fa519440c9045d051b362408 /src | |
parent | 600468ec99bf587b81c6bf7da949e27cc76a9b33 (diff) | |
download | scintilla-mirror-faf8032d98758218e2ae4dd1380aa6e4ecded41d.tar.gz |
Fix for fold markers not connecting. Bug #3292474.
From Jérôme LAFORGE.
Diffstat (limited to 'src')
-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) { |