Skip to content

Commit 56494bb

Browse files
authored
Merge pull request matplotlib#30619 from anntzer/step
Include step info in str(scroll_event).
2 parents cca26c5 + 451e1a0 commit 56494bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backend_bases.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1433,7 +1433,7 @@ def _from_ax_coords(cls, name, ax, xy, *args, **kwargs):
14331433
def __str__(self):
14341434
return (f"{self.name}: "
14351435
f"xy=({self.x}, {self.y}) xydata=({self.xdata}, {self.ydata}) "
1436-
f"button={self.button} dblclick={self.dblclick} "
1436+
f"button={self.button} dblclick={self.dblclick} step={self.step} "
14371437
f"inaxes={self.inaxes}")
14381438

14391439

0 commit comments

Comments
 (0)