diff options
author | 2017-04-07 18:10:12 -0400 | |
---|---|---|
committer | 2017-04-07 18:10:12 -0400 | |
commit | d255bd6711955192f98bed8bf0b98872dab7fca6 (patch) | |
tree | ad4d14573ece5e8117c9de7ae246ecf711f70680 /src/scintilla_backports/6137_c3bba4a9193e.patch | |
parent | ea8dd79d8972d8a0e23d1be50cf26e3c2ccadda7 (diff) | |
download | textadept-d255bd6711955192f98bed8bf0b98872dab7fca6.tar.gz textadept-d255bd6711955192f98bed8bf0b98872dab7fca6.zip |
Effectively updated to Scintilla 3.7.4 with select backports to 3.7.3.
Scintilla 3.7.4 requires a C++11 compiler, which I do not have.
Diffstat (limited to 'src/scintilla_backports/6137_c3bba4a9193e.patch')
-rw-r--r-- | src/scintilla_backports/6137_c3bba4a9193e.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/scintilla_backports/6137_c3bba4a9193e.patch b/src/scintilla_backports/6137_c3bba4a9193e.patch new file mode 100644 index 00000000..d87dec5c --- /dev/null +++ b/src/scintilla_backports/6137_c3bba4a9193e.patch @@ -0,0 +1,20 @@ +# HG changeset patch +# User Neil <nyamatongwe@gmail.com> +# Date 1489633522 -39600 +# Node ID c3bba4a9193ea55175c309109e5bab8c87f2a0bd +# Parent 2b25287311d015ecc9971c101f0f40ae00c8ca4e +For single phase drawing ensure remainder of line filled by always filling +in tag fold drawing. + +diff -r 2b25287311d0 -r c3bba4a9193e src/EditView.cxx +--- a/src/EditView.cxx Thu Mar 16 14:04:19 2017 +1100 ++++ b/src/EditView.cxx Thu Mar 16 14:05:22 2017 +1100 +@@ -1106,7 +1106,7 @@ + } + } + +- if ((phasesDraw != phasesOne) && (phase & drawBack)) { ++ if (phase & drawBack) { + surface->FillRectangle(rcSegment, textBack); + + // Fill Remainder of the line |