#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Wed, 13 Jun 2018 22:57:36 +0200
changeset 6337 2b13966b73f3
parent 6336 034ad643fe9a
child 6338 05cd9b440af9
#DOCUMENTATION by cg class: Scroller comment/format in: #scrollDown: #scrollUp:
Scroller.st
--- a/Scroller.st	Tue Jun 12 11:20:31 2018 +0200
+++ b/Scroller.st	Wed Jun 13 22:57:36 2018 +0200
@@ -2093,10 +2093,13 @@
 !
 
 scrollDown:amountToScroll
-    "compatibility with SimpleView. This allows mouse wheel actions on Scrollers
+    "compatibility with SimpleView. 
+     This allows mouse wheel actions on Scrollers & Wheels
      Note: this is used for horizontal scrollers, too (scrollRight)"
 
     self scrollStep:amountToScroll
+
+    "Modified (comment): / 13-06-2018 / 21:59:10 / Claus Gittinger"
 !
 
 scrollStep:delta
@@ -2134,10 +2137,13 @@
 !
 
 scrollUp:amountToScroll
-    "compatibility with SimpleView. This allows mouse wheel actions on Scrollers
+    "compatibility with SimpleView. 
+     This allows mouse wheel actions on Scrollers & Wheels
      Note: this is used for horizontal scrollers, too (scrollLeft)"
 
     self scrollStep:amountToScroll negated
+
+    "Modified (comment): / 13-06-2018 / 21:58:47 / Claus Gittinger"
 ! !
 
 !Scroller methodsFor:'forwarding changed origin'!