diff options
author | nyamatongwe <unknown> | 2009-05-27 01:58:57 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2009-05-27 01:58:57 +0000 |
commit | 848a31eaa6cb9de3ef52320d1e02796d22e7bdcb (patch) | |
tree | b61bc5ebffbd3ceae7652795bf0e6a845e669050 /src/LineMarker.cxx | |
parent | 27042b42199acb91f9f1c34aab6e98924f408a64 (diff) | |
download | scintilla-mirror-848a31eaa6cb9de3ef52320d1e02796d22e7bdcb.tar.gz |
Added SC_MARK_UNDERLINE from Stephan Deibel.
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 f79c3c085..f79f4f48a 100644 --- a/src/LineMarker.cxx +++ b/src/LineMarker.cxx @@ -154,7 +154,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 || markType == SC_MARK_BACKGROUND) { + } else if (markType == SC_MARK_EMPTY || markType == SC_MARK_BACKGROUND || markType == SC_MARK_UNDERLINE) { // An invisible marker so don't draw anything } else if (markType == SC_MARK_VLINE) { |