changed: #buttonPress:x:y:view:
authorClaus Gittinger <cg@exept.de>
Sun, 25 Dec 2011 10:23:49 +0100
changeset 2978 4358a9302b95
parent 2977 ee3185e19167
child 2979 306456bdfb61
changed: #buttonPress:x:y:view: always close and forward the buttonpress event
FlyByHelp.st
--- a/FlyByHelp.st	Thu Dec 22 11:18:10 2011 +0100
+++ b/FlyByHelp.st	Sun Dec 25 10:23:49 2011 +0100
@@ -79,11 +79,14 @@
 !
 
 buttonPress:button x:x y:y view:aView
-    aView == currentHelpView ifTrue:[
-        self hideHelp.
-        ^ true
-    ].
+    self hideHelp.
+"/    aView == currentHelpView ifTrue:[
+"/        self hideHelp.
+"/        ^ true
+"/    ].
     ^ super buttonPress:button x:x y:y view:aView
+
+    "Modified: / 23-12-2011 / 20:37:28 / cg"
 !
 
 keyPress:key x:x y:y view:aView
@@ -379,5 +382,5 @@
 !FlyByHelp class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview2/FlyByHelp.st,v 1.49 2011-07-13 13:15:21 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/FlyByHelp.st,v 1.50 2011-12-25 09:23:49 cg Exp $'
 ! !