diff options
author | nyamatongwe <devnull@localhost> | 2008-03-29 10:54:23 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2008-03-29 10:54:23 +0000 |
commit | c63e121d1a4846433f3b50c2c86daadb8dbd48ff (patch) | |
tree | da8ce04ff0231a739d9cc61f05bee4143842ae92 /src | |
parent | b7d38aef50f6c8d8e96bad6937a12f8519ca6145 (diff) | |
download | scintilla-mirror-c63e121d1a4846433f3b50c2c86daadb8dbd48ff.tar.gz |
Removed redundant drawing from feature request #1924618.
Diffstat (limited to 'src')
-rw-r--r-- | src/Editor.cxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 7f4ddcb51..af60624ff 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -2099,13 +2099,6 @@ void Editor::DrawEOL(Surface *surface, ViewStyle &vsDraw, PRectangle rcLine, Lin rcSegment.left = xEol + vsDraw.aveCharWidth + xStart; rcSegment.right = rcLine.right; - if (overrideBackground) { - surface->FillRectangle(rcSegment, background); - } else if (vsDraw.styles[ll->styles[ll->numCharsInLine] & styleMask].eolFilled) { - surface->FillRectangle(rcSegment, vsDraw.styles[ll->styles[ll->numCharsInLine] & styleMask].back.allocated); - } else { - surface->FillRectangle(rcSegment, vsDraw.styles[STYLE_DEFAULT].back.allocated); - } if (vsDraw.selEOLFilled && eolInSelection && vsDraw.selbackset && (line < pdoc->LinesTotal() - 1) && (vsDraw.selAlpha == SC_ALPHA_NOALPHA)) { surface->FillRectangle(rcSegment, SelectionBackground(vsDraw)); |