Skip to content

Commit

Permalink
Adding mouse handler event to evaluate expressions when the mouse is …
Browse files Browse the repository at this point in the history
…over. Removing duplicate installation of mouse handler.
  • Loading branch information
jsargiot committed May 25, 2013
1 parent 4cf6992 commit 1f6ac62
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions debugger_plugin/Debugger.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,6 @@ def debug_start(self, fn_run):

# Start debugger
self.debugger_adapter.start()

# Install mouse handler
self.__install_mouse_handler
else:
QMessageBox.information(self.editor.get_editor(),
"Error when starting debugger",
Expand Down Expand Up @@ -253,6 +250,7 @@ def _activate_ui(self):
self.explorer.add_tab(self.tabWidget, "Debug")
self.explorer._explorer.setCurrentWidget(self.tabWidget)

# Install mouse handler
self.__install_mouse_handler()

def _deactivate_ui(self):
Expand Down

0 comments on commit 1f6ac62

Please sign in to comment.