aboutsummaryrefslogtreecommitdiff
path: root/src/scintilla_backports/6133_30f1573f17ac.patch
blob: a69f2c1447f2120094b04a5395a2fc86c6e7327f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# HG changeset patch
# User Neil <nyamatongwe@gmail.com>
# Date 1489632019 -39600
# Node ID 30f1573f17ace82fd1adba69e733c4726f68e867
# Parent  6cf19f2bf214b1d1dc0ba05412a6659142c772ec
Fix 1 pixel unpainted as background.

diff -r 6cf19f2bf214 -r 30f1573f17ac src/EditView.cxx
--- a/src/EditView.cxx	Thu Mar 16 13:39:37 2017 +1100
+++ b/src/EditView.cxx	Thu Mar 16 13:40:19 2017 +1100
@@ -1111,7 +1111,7 @@
 
 		// 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;