ActiveHelp.st
changeset 4236 97f7891479f9
parent 4235 26cd91a37ff6
child 4238 3fe58167fbff
--- a/ActiveHelp.st	Wed Feb 27 15:54:01 2019 +0100
+++ b/ActiveHelp.st	Wed Feb 27 15:56:29 2019 +0100
@@ -329,16 +329,17 @@
 initiateHelp
     "determine where the mouse pointer is located,
      and start showing a tooltip for it.
-     This can be caleld to force update of the tooltip,
+     This can be called to force update of the tooltip,
      in case a widget has changed its mind 
      (typically: an undo menu button function might wonna do this,
       to show changed info)"
 
-    TheOneAndOnlyHelpListener notNil ifTrue:[
+    self isActive ifTrue:[  
         TheOneAndOnlyHelpListener initiateHelp
     ].
 
     "Created: / 27-02-2019 / 11:08:54 / Claus Gittinger"
+    "Modified (comment): / 27-02-2019 / 15:56:17 / Claus Gittinger"
 !
 
 start