TextView.st
changeset 6343 38dfd16a2888
parent 6340 48cf090e4539
child 6351 31f344d402c3
--- a/TextView.st	Wed Jun 13 23:01:17 2018 +0200
+++ b/TextView.st	Wed Jun 13 23:45:57 2018 +0200
@@ -3148,7 +3148,7 @@
     "just to make certain, that we actually have a selection..."
     selectionEndLine isNil ifTrue:[^ self].
 
-    self scrollDown.
+    self scrollDownLines:1.
 
     "make new selection immediately visible"
     prevEndLine := selectionEndLine.
@@ -3159,6 +3159,8 @@
     ].
     autoScrollBlock notNil ifTrue:[ Processor addTimedBlock:autoScrollBlock afterSeconds:autoScrollDeltaT ].
     self selectionChanged.
+
+    "Modified: / 13-06-2018 / 23:43:28 / Claus Gittinger"
 !
 
 scrollSelectLeft