8000 Fix typo, ensure that `linewidths` broadcasted in parent's method are… · matplotlib/matplotlib@261670f · GitHub
[go: up one dir, main page]

Skip to content

Commit 261670f

Browse files
committed
Fix typo, ensure that linewidths broadcasted in parent's method are used
1 parent f88d1f6 commit 261670f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/mpl_toolkits/mplot3d/art3d.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ def set_sizes(self, sizes, dpi=72.0):
563563
def set_linewidth(self, lw):
564564
super().set_linewidth(lw)
565565
if not self._in_draw:
566-
self._linewidth3d = lw
566+
self._linewidths3d = np.array(self._linewidths)
567567

568568
def get_depthshade(self):
569569
return self._depthshade

0 commit comments

Comments
 (0)
0