EditFieldWithCompletion.st
changeset 18052 ea6822165286
parent 17451 237cc69a5265
--- a/EditFieldWithCompletion.st	Mon Apr 23 09:48:44 2018 +0200
+++ b/EditFieldWithCompletion.st	Tue Apr 24 09:57:13 2018 +0200
@@ -353,7 +353,10 @@
     
     best := completionInfo first.
     options := completionInfo second.
-    best isNil ifTrue:[self halt ].
+    best isNil ifTrue:[
+        self breakPoint:#cg.
+        ^ self
+    ].
 "/    (options includes:best) ifFalse:[
 "/        best := options 
 "/                    detect:[:e | e asString startsWith:best asString ]