CodeCompletionHelpView.st
changeset 13476 9e09d2a0bf7c
parent 13448 8f3c88862f5a
child 13479 269e9b9afdc2
--- a/CodeCompletionHelpView.st	Tue Sep 03 14:16:15 2013 +0200
+++ b/CodeCompletionHelpView.st	Tue Sep 03 14:16:25 2013 +0200
@@ -143,21 +143,28 @@
 
 wantsFocusWithButtonPress
     "DEFINITELY not, because if we do so,
-     the editView looses focus on click, and sends me to hell
-     in its lost focus handling!!
+     the editView looses focus on click, and sends me to hell in its lost focus handling!!
      So I will be terminated by a buttonPress, before I get a chance to handle the buttonRelease
      (in which I fire my action)"
 
     ^ false
+!
+
+wantsFocusWithPointerEnter
+    "DEFINITELY not, because if we do so,
+     the editView looses focus on entry, and sends me to hell in its lost focus handling!!
+     So I will be terminated by a motion"
+
+    ^ false
 ! !
 
 !CodeCompletionHelpView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/CodeCompletionHelpView.st,v 1.2 2013-08-31 23:44:18 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/CodeCompletionHelpView.st,v 1.3 2013-09-03 12:16:25 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/CodeCompletionHelpView.st,v 1.2 2013-08-31 23:44:18 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/CodeCompletionHelpView.st,v 1.3 2013-09-03 12:16:25 cg Exp $'
 ! !