src/eric7/Debugger/DebuggerInterfacePython.py

branch
eric7-maintenance
changeset 11063
bb05d1db9286
parent 11019
27cd57e98461
parent 11029
1cd8701ed260
child 11118
967a88a16a21
diff -r b011307033d5 -r bb05d1db9286 src/eric7/Debugger/DebuggerInterfacePython.py
--- a/src/eric7/Debugger/DebuggerInterfacePython.py	Thu Oct 31 10:54:59 2024 +0100
+++ b/src/eric7/Debugger/DebuggerInterfacePython.py	Sat Nov 30 11:08:07 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