Sun, 20 Feb 2022 17:38:10 +0100
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))