class: ActiveHelp
authorClaus Gittinger <cg@exept.de>
Thu, 12 Sep 2013 10:30:38 +0200
changeset 3244 259f8530131a
parent 3243 f78b2a3470eb
child 3245 5dd413dddd1c
class: ActiveHelp changed: #handleMouseIn:x:y: do not show tooltips for passive views
ActiveHelp.st
--- a/ActiveHelp.st	Thu Sep 12 10:30:14 2013 +0200
+++ b/ActiveHelp.st	Thu Sep 12 10:30:38 2013 +0200
@@ -541,6 +541,7 @@
     "handle motion events - if the mousepointer left the 
      previous helped view, hide the help"
 
+    aView topView isActive ifFalse:[^ self].
     (self interestedIn:aView) ifFalse:[^ self].
 
     Error handle:[:ex |
@@ -748,6 +749,6 @@
 !ActiveHelp class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview2/ActiveHelp.st,v 1.73 2013-09-03 15:23:02 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/ActiveHelp.st,v 1.74 2013-09-12 08:30:38 cg Exp $'
 ! !