Thanks to visit codestin.com Credit goes to github.com
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 1cc592b commit 6ab710dCopy full SHA for 6ab710d
lib/matplotlib/backends/backend_qt.py
@@ -308,11 +308,11 @@ def mouseReleaseEvent(self, event):
308
def mouseOverEvent(self, event):
309
artist = event.artist
310
if not artist.get_hover:
311
- thismouse = MouseEvent("motion_notify_event", self,
+ thismouse = MouseEvent("motion_hover_event", self,
312
*self.mouseEventCoords(event),
313
modifiers=self._mpl_modifiers(),
314
guiEvent=event)
315
- hovering = HoverEvent("motion_notify_event", self,
+ hovering = HoverEvent("motion_hover_event", self,
316
thismouse, artist, None)
317
hovering._process()
318
0 commit comments