diff -r 882f7468e7f0 -r 66754ea64440 ActiveHelp.st --- 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!