#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Mon, 13 Feb 2017 20:01:31 +0100
changeset 7879 88de5614b25a
parent 7878 87d2abc0d82a
child 7880 bf75e8d6bbe1
#DOCUMENTATION by cg class: DisplaySurface comment/format in: #buttonPress:x:y:
DisplaySurface.st
--- a/DisplaySurface.st	Mon Feb 13 18:23:09 2017 +0100
+++ b/DisplaySurface.st	Mon Feb 13 20:01:31 2017 +0100
@@ -1739,15 +1739,16 @@
 !
 
 buttonPress:button x:x y:y
-    "button was pressed - if its middle button and there is a menu, show it."
+    "button was pressed - if it's middle button and there is a menu, show it."
 
     (button == 2) ifTrue:[
-	UserPreferences current showRightButtonMenuOnRelease ifFalse:[
-	    self activateMenu.
-	].
+        UserPreferences current showRightButtonMenuOnRelease ifFalse:[
+            self activateMenu.
+        ].
     ]
 
-    "Modified: 1.3.1996 / 13:25:07 / cg"
+    "Modified: / 01-03-1996 / 13:25:07 / cg"
+    "Modified (comment): / 13-02-2017 / 20:01:10 / cg"
 !
 
 buttonRelease:button x:x y:y