Allow deleting watches and improve expansion
Now scopes and watch results can be expanded/collapsed. Locals still default to being expanded, but watches do not.
This commit is contained in:
parent
437dbe8776
commit
3f73d1c2f8
4 changed files with 71 additions and 26 deletions
|
|
@ -183,6 +183,9 @@ class DebugSession( object ):
|
|||
def AddWatch( self, expression ):
|
||||
self._variablesView.AddWatch( self._currentFrame, expression )
|
||||
|
||||
def DeleteWatch( self ):
|
||||
self._variablesView.DeleteWatch()
|
||||
|
||||
def GoToFrame( self ):
|
||||
self._stackTraceView.GoToFrame()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue