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 f0b7026

Browse filesBrowse files
committed
Merge pull request #6314 from henningpohl/patch-1
Only render markers on a line when markersize > 0
2 parents f00db67 + 1a02a27 commit f0b7026
Copy full SHA for f0b7026

File tree

Expand file treeCollapse file tree

1 file changed

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

1 file changed

+1
-1
lines changed

‎lib/matplotlib/lines.py

Copy file name to clipboardExpand all lines: lib/matplotlib/lines.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -780,7 +780,7 @@ def draw(self, renderer):
780780
drawFunc(renderer, gc, tpath, affine.frozen())
781781
gc.restore()
782782

783-
if self._marker:
783+
if self._marker and self._markersize > 0:
784784
gc = renderer.new_gc()
785785
self._set_gc_clip(gc)
786786
rgbaFace = self._get_rgba_face()

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.