8000 lazily autoscale · matplotlib/matplotlib@fec64ef · GitHub
[go: up one dir, main page]

Skip to content

Commit fec64ef

Browse files
committed
lazily autoscale
1 parent b9908c6 commit fec64ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4939,7 +4939,7 @@ def arrow(self, x, y, dx, dy, **kwargs):
49394939

49404940
a = mpatches.FancyArrow(x, y, dx, dy, **kwargs)
49414941
self.add_patch(a)
4942-
self.autoscale_view()
4942+
self._request_autoscale_view()
49434943
return a
49444944

49454945
@docstring.copy(mquiver.QuiverKey.__init__)

0 commit comments

Comments
 (0)
0