Don't give arrow tip stroke width by default

This commit is contained in:
Grant Sanderson 2020-06-17 17:13:07 -07:00
parent 0a89a775a2
commit 48801f2892

View file

@ -623,7 +623,7 @@ class Arrow(Line):
def set_stroke_width_from_length(self):
mr = self.max_stroke_width_to_length_ratio
width = min(self.initial_stroke_width, mr * self.get_length())
self.set_stroke(width=width)
self.set_stroke(width=width, family=False)
return self