Skip to content

Commit 9d54195

Browse files
ktchen14mhagander
authored andcommitted
Fix bug in calculation of circle location
1 parent 54c3aa0 commit 9d54195

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

postgresqleu/confreg/jinjapdf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def draw_circle(self, o):
8686
else:
8787
self.canv.setStrokeColor(get_color(o['stroke']))
8888
self.canv.circle(getmm(o, 'x'),
89-
self.height - getmm(o, 'y') - (getmm(o, 'radius') / 2),
89+
self.height - getmm(o, 'y') - getmm(o, 'radius'),
9090
getmm(o, 'radius'),
9191
stroke=stroke,
9292
fill=fill)

0 commit comments

Comments
 (0)