Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 1c314c6

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

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed

‎lib/matplotlib/lines.py

Copy file name to clipboardExpand all lines: lib/matplotlib/lines.py
+2-2Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.