diff options
author | Neil <nyamatongwe@gmail.com> | 2017-03-16 14:05:22 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2017-03-16 14:05:22 +1100 |
commit | e15cc1724994267d9e732fc5077b33f7a160c31e (patch) | |
tree | 411bc517c12f924f82dc6a81eb7f9c4b1340411f | |
parent | 33255ced798333f98f2c406eda6b4106a30cd9b2 (diff) | |
download | scintilla-mirror-e15cc1724994267d9e732fc5077b33f7a160c31e.tar.gz |
For single phase drawing ensure remainder of line filled by always filling
in tag fold drawing.
-rw-r--r-- | src/EditView.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/EditView.cxx b/src/EditView.cxx index 372821080..fd9f43774 100644 --- a/src/EditView.cxx +++ b/src/EditView.cxx @@ -1106,7 +1106,7 @@ void EditView::DrawFoldDisplayText(Surface *surface, const EditModel &model, con } } - if ((phasesDraw != phasesOne) && (phase & drawBack)) { + if (phase & drawBack) { surface->FillRectangle(rcSegment, textBack); // Fill Remainder of the line |