#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Tue, 24 Apr 2018 09:57:13 +0200
changeset 18052 ea6822165286
parent 18051 b68c1f9aff87
child 18053 4dbd16cc7512
#REFACTORING by cg class: EditFieldWithCompletion changed: #doCompletionThenSend:
EditFieldWithCompletion.st
--- 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 ]