Skip to content

Commit

Permalink
retargetable path fail bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RHOsanghoon committed Apr 23, 2014
1 parent e50e566 commit e50489e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions xdot.py
Original file line number Diff line number Diff line change
Expand Up @@ -1709,7 +1709,6 @@ def set_highlight(self, items):
self.focused_index = None # drnol: reset node focus
self.selected_node = None # drnol: reset node selection
self.selected_edge_index = None # drnol: reset edge selection
self.path_pivot_node = None # drnol: reset path pivot

# original action
self.highlight = items
Expand Down Expand Up @@ -2108,7 +2107,7 @@ def on_area_button_release(self, area, event):
self.path_pivot_node = element
else:
self.selected_node = None
self.path_pivot_node = None
self.path_pivot_node = None
return True

if event.button == 1 or event.button == 2:
Expand Down

0 comments on commit e50489e

Please sign in to comment.