Skip to content

Commit 699e9a5

Browse files
committed
Fix NameError
1 parent e42867d commit 699e9a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/robotide/editor/editors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def _mouse_outside_tooltip(self):
102102
mx, my = wx.GetMousePosition()
103103
tx, ty = self._last_shown_tooltip.screen_position
104104
dx, dy = self._last_shown_tooltip.size
105-
return (mxa < tx or mx > tx+dx) or (my < ty or my > ty+dy)
105+
return (mx < tx or mx > tx+dx) or (my < ty or my > ty+dy)
106106

107107
def tooltip_allowed(self, tooltip):
108108
if wx.GetMouseState().ControlDown() or \

0 commit comments

Comments
 (0)