#UI_ENHANCEMENT by cg
authorClaus Gittinger <cg@exept.de>
Tue, 08 Nov 2016 17:33:12 +0100
changeset 5960 d5697b81bbe6
parent 5959 b27a22e16282
child 5961 eaeba68ee65f
#UI_ENHANCEMENT by cg class: EditTextViewCompletionSupport changed: #startCompletionProcess ignore breakpoints in the debugger.
EditTextViewCompletionSupport.st
--- a/EditTextViewCompletionSupport.st	Mon Nov 07 15:34:56 2016 +0100
+++ b/EditTextViewCompletionSupport.st	Tue Nov 08 17:33:12 2016 +0100
@@ -245,8 +245,14 @@
             "/ protect end-user applications from errors
             Error handle:[:ex |
                 Smalltalk isSmalltalkDevelopmentSystem ifTrue:[ ex reject ]
-            ] do:[    
-                self computeCompletions.
+            ] do:[ 
+                (editView topView isKindOf:DebugView) ifTrue:[
+                    ControlInterrupt ignoreIn:[
+                        self computeCompletions.
+                    ].    
+                ] ifFalse:[    
+                    self computeCompletions.
+                ].
             ].
         ] forkAt:(Processor activePriority - 1).