eric6/Debugger/DebuggerInterfacePython.py

branch
multi_processing
changeset 7410
401791e6f50f
parent 7409
1413bfe73d41
child 7411
6d8dcb3551b3
--- a/eric6/Debugger/DebuggerInterfacePython.py	Tue Feb 11 18:58:38 2020 +0100
+++ b/eric6/Debugger/DebuggerInterfacePython.py	Wed Feb 12 20:04:31 2020 +0100
@@ -549,18 +549,9 @@
             self.debugServer.initializeClient(debuggerId)
             
             # perform auto-continue except for master
-            if (
-                self.__autoContinue and
-                debuggerId != self.__master and
-                debuggerId not in self.__autoContinued
-            ):
-                self.__autoContinued.append(debuggerId)
+            if debuggerId != self.__master:
                 QTimer.singleShot(
                     0, lambda: self.remoteContinue(debuggerId))
-                # TODO: maybe the debugger ID should not be registered here but
-                # only in user_line. Seems the debugger stops in a frame
-                # outside of the debugged script and this continue moves it to
-                # the first line of the script.
     
     def __socketDisconnected(self, sock):
         """

eric ide

mercurial