diff options
author | nyamatongwe <devnull@localhost> | 2009-06-01 05:24:08 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2009-06-01 05:24:08 +0000 |
commit | 42a8d1266f4457cf3b623a9284c7deddbc12e453 (patch) | |
tree | 9f6b7e1a00fedfae07a1254e5a1407ca685090e4 /src | |
parent | 2c640fc5d86a7b69436c1c5122149e21bd571f2d (diff) | |
download | scintilla-mirror-42a8d1266f4457cf3b623a9284c7deddbc12e453.tar.gz |
Don't display SC_MARK_AVAILABLE markers.
Diffstat (limited to 'src')
-rw-r--r-- | src/LineMarker.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/LineMarker.cxx b/src/LineMarker.cxx index f79f4f48a..0bfd47938 100644 --- a/src/LineMarker.cxx +++ b/src/LineMarker.cxx @@ -154,7 +154,8 @@ void LineMarker::Draw(Surface *surface, PRectangle &rcWhole, Font &fontForCharac rcSmall.bottom = rc.bottom - 2; surface->RectangleDraw(rcSmall, fore.allocated, back.allocated); - } else if (markType == SC_MARK_EMPTY || markType == SC_MARK_BACKGROUND || markType == SC_MARK_UNDERLINE) { + } else if (markType == SC_MARK_EMPTY || markType == SC_MARK_BACKGROUND || + markType == SC_MARK_UNDERLINE || markType == SC_MARK_AVAILABLE) { // An invisible marker so don't draw anything } else if (markType == SC_MARK_VLINE) { |