Fixed an issue in the debugger interface related to auto-continue on Windows systems. eric7

Sun, 20 Feb 2022 17:38:10 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 20 Feb 2022 17:38:10 +0100
branch
eric7
changeset 8953
3e8adcb59aad
parent 8952
b6311a17471a
child 8954
c8b027c654bc

Fixed an issue in the debugger interface related to auto-continue on Windows systems.

eric7/Debugger/DebuggerInterfacePython.py file | annotate | diff | comparison | revisions
--- a/eric7/Debugger/DebuggerInterfacePython.py	Sun Feb 20 16:25:22 2022 +0100
+++ b/eric7/Debugger/DebuggerInterfacePython.py	Sun Feb 20 17:38:10 2022 +0100
@@ -574,6 +574,7 @@
                 self.__autoContinue and
                 not self.__isStepCommand
             ):
+                self.__autoContinued.append(debuggerId)
                 QTimer.singleShot(
                     0, lambda: self.remoteContinue(debuggerId))
     

eric ide

mercurial