Skip to content

Commit 3251c3a

Browse files
committed
Propagate marker antialias setting to GraphicsContext.
The Agg backend still doesn't know how to make use of that information in draw_markers, but third-party backends (e.g. mplcairo) do honor the setting.
1 parent fc73593 commit 3251c3a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/matplotlib/lines.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -797,6 +797,7 @@ def draw(self, renderer):
797797
gc.set_alpha(rgbaFace[3])
798798
else:
799799
gc.set_alpha(self.get_alpha())
800+
gc.set_antialiased(self._antialiased)
800801

801802
marker = self._marker
802803
tpath, affine = transf_path.get_transformed_points_and_affine()

0 commit comments

Comments
 (0)