--- a/src/eric7/Debugger/DebuggerInterfacePython.py Fri Nov 01 12:25:41 2024 +0100 +++ b/src/eric7/Debugger/DebuggerInterfacePython.py Fri Nov 01 18:12:30 2024 +0100 @@ -1617,6 +1617,18 @@ debuggerId, ) + def setAutoContinue(self, autoContinue): + """ + Public method to set the automatic continue flag of the interface. + + If this is set to True, the debugger will tell the debug client to continue + when it stops at the first line of the script to be debugged. + + @param autoContinue flag indicating the auto continue state + @type bool + """ + self.__autoContinue = autoContinue + def __receiveJson(self, sock): """ Private method to handle data from the client.