Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cb36b28

Browse files
committed
Merge pull request #3526 from tacaswell/fix_eps_clip_paths
BUG : fix eps corruption when using clipping
2 parents 0575dc5 + 3424506 commit cb36b28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backends/backend_ps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ def _get_clip_path(self, clippath, clippath_transform):
568568
ps_cmd.extend(['clip', 'newpath', '} bind def\n'])
569569
self._pswriter.write('\n'.join(ps_cmd))
570570
self._clip_paths[key] = pid
571-
return id
571+
return pid
572572

573573
def draw_path(self, gc, path, transform, rgbFace=None):
574574
"""

0 commit comments

Comments
 (0)