diff options
author | nyamatongwe <devnull@localhost> | 2011-04-27 12:44:42 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2011-04-27 12:44:42 +1000 |
commit | 2e7745b6130cd01c4a6bf886c3fd289cc564a60e (patch) | |
tree | 78a3a8e1105dff08fab09b71768a54d2c29bd219 /src/LineMarker.cxx | |
parent | 49bd97112a64526e3ce067c54d46440710189df8 (diff) | |
download | scintilla-mirror-2e7745b6130cd01c4a6bf886c3fd289cc564a60e.tar.gz |
Fold marker fixes for wrapped lines. Bug #3291579.
From Marko Njezic.
Diffstat (limited to 'src/LineMarker.cxx')
-rw-r--r-- | src/LineMarker.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/LineMarker.cxx b/src/LineMarker.cxx index 747c5ff12..b97c9fd5a 100644 --- a/src/LineMarker.cxx +++ b/src/LineMarker.cxx @@ -77,6 +77,8 @@ void LineMarker::Draw(Surface *surface, PRectangle &rcWhole, Font &fontForCharac case LineMarker::head : head = backSelected; tail = backSelected; + if (markType == SC_MARK_VLINE) + body = backSelected; break; case LineMarker::body : head = backSelected; |