Skip to content

Commit

Permalink
Stopped removing pointer straight away with user action
Browse files Browse the repository at this point in the history
  • Loading branch information
joonty committed Aug 14, 2012
1 parent 0858d37 commit e07b1e2
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions plugin/python/vdebug/runner.py
Expand Up @@ -130,7 +130,6 @@ def run(self):
else:
vdebug.log.Log("Running")
self.ui.statuswin.set_status("running")
self.ui.sourcewin.remove_pointer()
res = self.api.run()
self.refresh(res)

Expand All @@ -141,7 +140,6 @@ def step_over(self):
else:
vdebug.log.Log("Stepping over")
self.ui.statuswin.set_status("running")
self.ui.sourcewin.remove_pointer()
res = self.api.step_over()
self.refresh(res)

Expand All @@ -152,7 +150,6 @@ def step_into(self):
else:
vdebug.log.Log("Stepping into statement")
self.ui.statuswin.set_status("running")
self.ui.sourcewin.remove_pointer()
res = self.api.step_into()
self.refresh(res)

Expand All @@ -163,7 +160,6 @@ def step_out(self):
else:
vdebug.log.Log("Stepping out of statement")
self.ui.statuswin.set_status("running")
self.ui.sourcewin.remove_pointer()
res = self.api.step_out()
self.refresh(res)

Expand Down

0 comments on commit e07b1e2

Please sign in to comment.