aboutsummaryrefslogtreecommitdiff
path: root/src/scintilla.patch
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2019-02-28 17:50:36 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2019-02-28 17:50:36 -0500
commitb3cb8d09f0b7715118828c272311e02f05de8817 (patch)
treee0f9e509f059c4690ac7fda2b491f713a1e3077f /src/scintilla.patch
parent97ff2aedc16248f6a6d9540d743630a75956406c (diff)
downloadtextadept-b3cb8d09f0b7715118828c272311e02f05de8817.tar.gz
textadept-b3cb8d09f0b7715118828c272311e02f05de8817.zip
Removed patch fixed in Scintilla 3.10.2.
Diffstat (limited to 'src/scintilla.patch')
-rw-r--r--src/scintilla.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/scintilla.patch b/src/scintilla.patch
index 64bbf629..6aa2b251 100644
--- a/src/scintilla.patch
+++ b/src/scintilla.patch
@@ -36,18 +36,6 @@ Revert caret block placement change introduced by Scintilla 3.7.3.
const int offset = static_cast<int>(posCaret.Position() - posLineStart);
const XYPOSITION spaceWidth = vsDraw.styles[ll->EndLineStyle()].spaceWidth;
const XYPOSITION virtualOffset = posCaret.VirtualSpace() * spaceWidth;
-Temporary patch to send SC_UPDATE_SELECTION for multiple select.
-diff -r 6e368ee248e4 src/Editor.cxx
---- a/src/Editor.cxx Fri Oct 26 11:06:34 2018 -0400
-+++ b/src/Editor.cxx Sun Nov 04 09:06:53 2018 -0500
-@@ -770,6 +770,7 @@
- selectedText.c_str(), searchFlags, &lengthFound);
- if (pos >= 0) {
- sel.AddSelection(SelectionRange(pos + lengthFound, pos));
-+ ContainerNeedsUpdate(SC_UPDATE_SELECTION);
- ScrollRange(sel.RangeMain());
- Redraw();
- if (addNumber == addOne)
Hijack SCI_LOADLEXERLIBRARY for programmatically setting input method.
This is helpful on newer version of Mac OSX, where changing the input method is
flaky.