diff options
author | Neil <nyamatongwe@gmail.com> | 2017-03-16 13:40:19 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2017-03-16 13:40:19 +1100 |
commit | c8be46d4bf7b0b386223188eb9c33a8f39746619 (patch) | |
tree | 6ccc74f929ae56140b1d63a22854d59071932ace /src/EditView.cxx | |
parent | 115d61607ee8af1fd6cf62594a9fe5a4e23b7494 (diff) | |
download | scintilla-mirror-c8be46d4bf7b0b386223188eb9c33a8f39746619.tar.gz |
Fix 1 pixel unpainted as background.
Diffstat (limited to 'src/EditView.cxx')
-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 64585cbe7..33359ca97 100644 --- a/src/EditView.cxx +++ b/src/EditView.cxx @@ -1111,7 +1111,7 @@ void EditView::DrawFoldDisplayText(Surface *surface, const EditModel &model, con // Fill Remainder of the line PRectangle rcRemainder = rcSegment; - rcRemainder.left = rcRemainder.right + 1; + rcRemainder.left = rcRemainder.right; if (rcRemainder.left < rcLine.left) rcRemainder.left = rcLine.left; rcRemainder.right = rcLine.right; |