checkin from browser
authorClaus Gittinger <cg@exept.de>
Mon, 02 Aug 1999 10:59:32 +0200
changeset 1212 816bee31f949
parent 1211 f09ce6b9b03d
child 1213 a80ce81d2944
checkin from browser
ActiveHelp.st
--- a/ActiveHelp.st	Wed Jul 28 22:57:34 1999 +0200
+++ b/ActiveHelp.st	Mon Aug 02 10:59:32 1999 +0200
@@ -333,13 +333,14 @@
     "handle motion events - if the mousepointer left the 
      previous helped view, hide the help"
 
+    "/ ignore my own help-view
+    aView topView == currentHelpView ifTrue:[
+       ^ true
+    ].
+
     Object errorSignal handle:[:ex |
         ex return
     ] do:[
-        "/ ignore my own help-view
-        aView topView == currentHelpView ifTrue:[
-           ^ true
-        ].
 
         (self interestedIn:aView) ifTrue:[
             self stopHelpDisplayProcess.
@@ -789,6 +790,6 @@
 !ActiveHelp class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/ActiveHelp.st,v 1.39 1999-03-15 10:54:48 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/ActiveHelp.st,v 1.40 1999-08-02 08:59:32 cg Exp $'
 ! !
 ActiveHelp initialize!