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

Skip to content

Commit 1c314c6

Browse files
authored
Merge pull request #14502 from meeseeksmachine/auto-backport-of-pr-14451-on-v3.1.x
Backport PR #14451 on branch v3.1.x (FIX: return points rather than path to fix regression)
2 parents 8960dbb + d8c3672 commit 1c314c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/lines.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -835,10 +835,10 @@ def draw(self, renderer):
835835
self.recache()
836836
self._transform_path(subslice)
837837
tpath, affine = (self._get_transformed_path()
838-
.get_transformed_path_and_affine())
838+
.get_transformed_points_and_affine())
839839
else:
840840
tpath, affine = (self._get_transformed_path()
841-
.get_transformed_path_and_affine())
841+
.get_transformed_points_and_affine())
842842

843843
if len(tpath.vertices):
844844
# subsample the markers if markevery is not None

0 commit comments

Comments
 (0)