aboutsummaryrefslogtreecommitdiff
path: root/src/scintilla.patch
diff options
context:
space:
mode:
Diffstat (limited to 'src/scintilla.patch')
-rw-r--r--src/scintilla.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/scintilla.patch b/src/scintilla.patch
index ac950c56..77eaf161 100644
--- a/src/scintilla.patch
+++ b/src/scintilla.patch
@@ -191,3 +191,16 @@ diff -r bfdfb44eb777 src/Document.cxx
+}
+
+#endif
+diff -r e99b1a2bfbf8 src/Editor.cxx
+--- a/src/Editor.cxx Thu Feb 16 08:37:09 2017 +1100
++++ b/src/Editor.cxx Wed Feb 22 11:37:10 2017 -0500
+@@ -3111,6 +3111,9 @@
+ }
+
+ void Editor::CursorUpOrDown(int direction, Selection::selTypes selt) {
++ if ((selt == Selection::noSel) && sel.MoveExtends()) {
++ selt = Selection::selStream;
++ }
+ SelectionPosition caretToUse = sel.Range(sel.Main()).caret;
+ if (sel.IsRectangular()) {
+ if (selt == Selection::noSel) {