src/eric7/Debugger/DebuggerInterfacePython.py

branch
eric7
changeset 11029
1cd8701ed260
parent 11009
5206e4c572e8
child 11063
bb05d1db9286
child 11087
8f5d1b5e16c9
diff -r 6353fe3204c9 -r 1cd8701ed260 src/eric7/Debugger/DebuggerInterfacePython.py
--- 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.

eric ide

mercurial