8000 minor fix · matplotlib/matplotlib@a4275a1 · GitHub
[go: up one dir, main page]

Skip to content

Commit a4275a1

Browse files
committed
minor fix
1 parent e1fe14d commit a4275a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/collections.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ def draw(self, renderer):
384384
len(self._linewidths) == 1 and
385385
all(ls[1] is None for ls in self._linestyles) and
386386
len(self._antialiaseds) == 1 and len(self._urls) == 1 and
387-
len(self.get_hatch()) == 1):
387+
all(h is None for h in self._hatch)):
388388
if len(trans):
389389
combined_transform = transforms.Affine2D(trans[0]) + transform
390390
else:

0 commit comments

Comments
 (0)
0