Skip to content

Commit

Permalink
Merge pull request matplotlib#1307 from mdboom/circle-marker-snap
Browse files Browse the repository at this point in the history
Marker not round with markersize=3
  • Loading branch information
pelson committed Sep 26, 2012
2 parents 08fc6a6 + 6a3cc74 commit fed7557
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/matplotlib/markers.py
Expand Up @@ -276,7 +276,7 @@ def _half_fill(self):

def _set_circle(self, reduction = 1.0):
self._transform = Affine2D().scale(0.5 * reduction)
self._snap_threshold = 3.0
self._snap_threshold = 6.0
fs = self.get_fillstyle()
if not self._half_fill():
self._path = Path.unit_circle()
Expand Down

0 comments on commit fed7557

Please sign in to comment.