Skip to content

Commit 2498860

Browse files
author
Emden Gansner
committed
Add minus sign dropped in the conversion added in
0258d60.
1 parent ba314a6 commit 2498860

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/core/gvrender_core_svg.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ static void svg_textspan(GVJ_t * job, pointf p, textspan_t * span)
408408
gvputs(job, " x=\"");
409409
gvprintdouble(job, p.x);
410410
gvputs(job, "\" y=\"");
411-
gvprintdouble(job, p.y);
411+
gvprintdouble(job, -p.y);
412412
gvputs(job, "\"");
413413
}
414414
pA = span->font->postscript_alias;

0 commit comments

Comments
 (0)