Allow Continue to restart if the process isn't running
This commit is contained in:
parent
f1859639d7
commit
82605c80cc
1 changed files with 4 additions and 1 deletions
|
|
@ -260,7 +260,10 @@ class DebugSession( object ):
|
||||||
} )
|
} )
|
||||||
|
|
||||||
def Continue( self ):
|
def Continue( self ):
|
||||||
self._stackTraceView.Continue()
|
if self._connection:
|
||||||
|
self._stackTraceView.Continue()
|
||||||
|
else:
|
||||||
|
self.Start()
|
||||||
|
|
||||||
def Pause( self ):
|
def Pause( self ):
|
||||||
self._stackTraceView.Pause()
|
self._stackTraceView.Pause()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue