diff options
author | nyamatongwe <devnull@localhost> | 2001-09-24 13:29:37 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-09-24 13:29:37 +0000 |
commit | d1b0fa9c5d4e7cd8d48e1d4dc4d38676140193e7 (patch) | |
tree | fc015f71cea45575ad277f22127b99d97c57b2c9 /src/LineMarker.cxx | |
parent | 2748de50c1e4b12f3b4cd224950b350684558b88 (diff) | |
download | scintilla-mirror-d1b0fa9c5d4e7cd8d48e1d4dc4d38676140193e7.tar.gz |
Patch from Stephan for the SC_MARK_BACKGROUND marker.
Diffstat (limited to 'src/LineMarker.cxx')
-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 a7c5b124f..e4b8b3299 100644 --- a/src/LineMarker.cxx +++ b/src/LineMarker.cxx @@ -123,7 +123,7 @@ 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) { + } else if (markType == SC_MARK_EMPTY || markType == SC_MARK_BACKGROUND) { // An invisible marker so don't draw anything } else if (markType == SC_MARK_VLINE) { |