8000 Merge pull request #14501 from meeseeksmachine/auto-backport-of-pr-14… · QuLogic/matplotlib@cf30f37 · GitHub
[go: up one dir, main page]

Skip to content

Commit cf30f37

Browse files
authored
Merge pull request matplotlib#14501 from meeseeksmachine/auto-backport-of-pr-14451-on-v2.2.x
Backport PR matplotlib#14451 on branch v2.2.x (FIX: return points rather than path to fix regression)
2 parents d84ed49 + 2227d55 commit cf30f37

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
@@ -811,10 +811,10 @@ def draw(self, renderer):
811811
self.recache()
812812
self._transform_path(subslice)
813813
tpath, affine = (self._get_transformed_path()
814-
.get_transformed_path_and_affine())
814+
.get_transformed_points_and_affine())
815815
else:
816816
tpath, affine = (self._get_transformed_path()
817-
.get_transformed_path_and_affine())
817+
.get_transformed_points_and_affine())
818818

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

0 commit comments

Comments
 (0)
0