ActiveHelp.st
changeset 2473 66754ea64440
parent 2391 f6af9239e999
child 2685 9b6fd90dc9e2
--- a/ActiveHelp.st	Mon May 19 19:27:00 2008 +0200
+++ b/ActiveHelp.st	Mon May 19 21:16:53 2008 +0200
@@ -352,10 +352,10 @@
 
 !ActiveHelp methodsFor:'event handling'!
 
-buttonMotion:state x:x y:y view:aView
+buttonMotion:buttonAndModifierState x:x y:y view:aView
     "handle motion events - prepare to show help"
 
-    state == 0 ifTrue:[
+    buttonAndModifierState == 0 ifTrue:[
         self handleMouseIn:aView x:x y:y.
     ].
     ^ false
@@ -720,7 +720,7 @@
 !ActiveHelp class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/ActiveHelp.st,v 1.60 2008-02-26 10:25:51 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/ActiveHelp.st,v 1.61 2008-05-19 19:16:53 cg Exp $'
 ! !
 
 ActiveHelp initialize!