Allow Continue to restart if the process isn't running

This commit is contained in:
Ben Jackson 2019-02-01 10:05:40 +00:00
commit 82605c80cc

View file

@ -260,7 +260,10 @@ class DebugSession( object ):
} )
def Continue( self ):
self._stackTraceView.Continue()
if self._connection:
self._stackTraceView.Continue()
else:
self.Start()
def Pause( self ):
self._stackTraceView.Pause()