Skip to content

Commit 0fc655a

Browse files
authored
Merge pull request #14451 from bsipocz/keep_only_points
FIX: return points rather than path to fix regression
2 parents 7c224b5 + cd28dd6 commit 0fc655a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/lines.py

+2-2
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)