#BUGFIX by stefan
authorStefan Vogel <sv@exept.de>
Tue, 18 Jul 2017 12:32:38 +0200
changeset 6184 5c47cff0a192
parent 6183 0ba0e432ebaa
child 6185 11a10868443b
#BUGFIX by stefan class: EditTextView changed: #pageDown https://expeccoalm.exept.de/D204551 DNU on pageDown (very special case).
EditTextView.st
--- a/EditTextView.st	Sun Jul 16 14:05:58 2017 +0200
+++ b/EditTextView.st	Tue Jul 18 12:32:38 2017 +0200
@@ -8265,7 +8265,12 @@
 
     prevCursorLine := cursorVisibleLine.
     super pageDown.
-    self cursorVisibleLine:prevCursorLine col:cursorCol
+    prevCursorLine notNil ifTrue:[
+        "https://expeccoalm.exept.de/D204551"
+        self cursorVisibleLine:prevCursorLine col:cursorCol.
+    ].
+
+    "Modified: / 18-07-2017 / 12:31:47 / stefan"
 !
 
 pageUp