8000 Fix wrong linewidth get · matplotlib/matplotlib@74765ff · GitHub
[go: up one dir, main page]

Skip to content

Commit 74765ff

Browse files
committed
Fix wrong linewidth get
1 parent 2a1963a commit 74765ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backends/backend_svg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ def _get_hatch(self, gc, rgbFace):
484484
edge = gc.get_hatch_color()
485485
if edge is not None:
486486
edge = tuple(edge)
487-
lw = gc._linewidth
487+
lw = gc._hatch_linewidth
488488
dictkey = (gc.get_hatch(), rgbFace, edge, lw)
489489
oid = self._hatchd.get(dictkey)
490490
if oid is None:

0 commit comments

Comments
 (0)
0