diff options
author | nyamatongwe <devnull@localhost> | 2007-02-25 02:12:41 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2007-02-25 02:12:41 +0000 |
commit | 0ba83d647c49ff560b4db43050976845b5a1e763 (patch) | |
tree | 528b4d7b0bbe7e09c5ec245d71c60f004bbf9277 /src | |
parent | 21b3680e1bb0938909e40acbfb09ae162e2d90fc (diff) | |
download | scintilla-mirror-0ba83d647c49ff560b4db43050976845b5a1e763.tar.gz |
Fixed bug #1656532 where background colour of marker not
showing behind wrap indicator.
Diffstat (limited to 'src')
-rw-r--r-- | src/Editor.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index f2c76116f..93b299090 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -2401,7 +2401,8 @@ void Editor::DrawLine(Surface *surface, ViewStyle &vsDraw, int line, int lineVis rcPlace.right = rcPlace.left + actualWrapVisualStartIndent * vsDraw.aveCharWidth; // default bgnd here.. - surface->FillRectangle(rcSegment, vsDraw.styles[STYLE_DEFAULT].back.allocated); + surface->FillRectangle(rcSegment, overrideBackground ? background : + vsDraw.styles[STYLE_DEFAULT].back.allocated); // main line style would be below but this would be inconsistent with end markers // also would possibly not be the style at wrap point |