8000 Backport PR #14451: FIX: return points rather than path to fix regres… · matplotlib/matplotlib@2227d55 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2227d55

Browse files
tacaswellMeeseeksDev[bot]
authored and
MeeseeksDev[bot]
committed
Backport PR #14451: FIX: return points rather than path to fix regression
1 parent d099603 commit 2227d55

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