diff --git a/lib/matplotlib/backend_bases.py b/lib/matplotlib/backend_bases.py index 908c05d4362d..edcc81f95f89 100644 --- a/lib/matplotlib/backend_bases.py +++ b/lib/matplotlib/backend_bases.py @@ -1848,7 +1848,9 @@ def pick_event(self, mouseevent, artist, **kwargs): fire off :class:`PickEvent` callbacks registered listeners """ s = 'pick_event' - event = PickEvent(s, self, mouseevent, artist, **kwargs) + event = PickEvent(s, self, mouseevent, artist, + guiEvent=mouseevent.guiEvent, + **kwargs) self.callbacks.process(s, event) def scroll_event(self, x, y, step, guiEvent=None):