We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e42867d commit 699e9a5Copy full SHA for 699e9a5
src/robotide/editor/editors.py
@@ -102,7 +102,7 @@ def _mouse_outside_tooltip(self):
102
mx, my = wx.GetMousePosition()
103
tx, ty = self._last_shown_tooltip.screen_position
104
dx, dy = self._last_shown_tooltip.size
105
- return (mxa < tx or mx > tx+dx) or (my < ty or my > ty+dy)
+ return (mx < tx or mx > tx+dx) or (my < ty or my > ty+dy)
106
107
def tooltip_allowed(self, tooltip):
108
if wx.GetMouseState().ControlDown() or \
0 commit comments