diff options
| author | nyamatongwe <unknown> | 2008-03-29 10:54:23 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2008-03-29 10:54:23 +0000 | 
| commit | a8fc32211a1cc4a0dbd420b2b08a4456e0f7fb2d (patch) | |
| tree | da8ce04ff0231a739d9cc61f05bee4143842ae92 | |
| parent | 6bcac46748625f3a3beca62a61dfd448251b8b35 (diff) | |
| download | scintilla-mirror-a8fc32211a1cc4a0dbd420b2b08a4456e0f7fb2d.tar.gz | |
Removed redundant drawing from feature request #1924618.
| -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)); | 
