Skip to content

Commit 9205967

Browse files
authored
Merge pull request #6583 from alcinos/patch-1
API: default parameters of FancyArrow
2 parents e325a96 + 52497c4 commit 9205967

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/patches.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1197,7 +1197,7 @@ def __init__(self, x, y, dx, dy, width=0.001, length_includes_head=False,
11971197
11981198
"""
11991199
if head_width is None:
1200-
head_width = 20 * width
1200+
head_width = 3 * width
12011201
if head_length is None:
12021202
head_length = 1.5 * head_width
12031203

0 commit comments

Comments
 (0)