Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 23d60f3

Browse files
committed
applied patch by Manuel Metz to backend_agg.py to fix draw_ellipse call
svn path=/trunk/matplotlib/; revision=3250
1 parent b175561 commit 23d60f3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/matplotlib/backends/backend_agg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,8 @@ def draw_point(self, gc, x, y):
172172
if __debug__: verbose.report('RendererAgg.draw_point', 'debug-annoying')
173173
rgbFace = gc.get_rgb()
174174
self._renderer.draw_ellipse(
175-
gc, rgbFace, x, y, 0.5, 0.5)
176-
175+
gc, rgbFace, x, y, 0.5, 0.5, 0.0)
176+
177177
def draw_mathtext(self, gc, x, y, s, prop, angle):
178178
"""
179179
Draw the math text using matplotlib.mathtext

0 commit comments

Comments
 (0)