8000 fixes #2885, #3935, #3693, for hatched fill · caspervdw/matplotlib@b1475f8 · GitHub
[go: up one dir, main page]

Skip to content

Commit b1475f8

Browse files
author
gluap
committed
The last patch only removed clipping for the colour fill, hatches in fill_between were still clipped. Passing through rgbFace fixes this.
1 parent a488cbc commit b1475f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backends/backend_pgf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ def draw_path(self, gc, path, transform, rgbFace=None):
490490

491491
# combine clip and path for clipping
492492
self._print_pgf_clip(gc)
493-
self._print_pgf_path(gc, path, transform)
493+
self._print_pgf_path(gc, path, transform, rgbFace)
494494
writeln(self.fh, r"\pgfusepath{clip}")
495495

496496
# build pattern definition

0 commit comments

Comments
 (0)
0