summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Kurashov <pavell@mail.ru>2008-11-14 13:50:20 +0100
committerPaulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>2008-11-28 04:05:57 -0200
commit885f2712b0d5137d5349c3debbcea0db0f39e92f (patch)
tree42f5420938955af8c6dddb514499ff68a21ced90
parent6bd5defc38d2e1868d9303026b38487d6bffc7ab (diff)
correct outline with cornerRadius
http://bugs.freedesktop.org/show_bug.cgi?id=12790 https://bugs.freedesktop.org/attachment.cgi?id=12008 Signed-off-by: Peter Breitenlohner <peb@mppmu.mpg.de>
-rw-r--r--psgeom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/psgeom.c b/psgeom.c
index cfb3ab5..3901917 100644
--- a/psgeom.c
+++ b/psgeom.c
@@ -309,7 +309,7 @@ XkbOutlinePtr ol;
}
else {
fprintf(out," mark\n");
- fprintf(out," %3d %3d moveto\n",pt[0].x,pt[0].y);
+ fprintf(out," %3d %3d moveto\n",pt[0].x + ol->corner_radius,pt[0].y);
fprintf(out," %3d %3d %3d %3d %3d arcto\n",pt[1].x,pt[0].y,
pt[1].x,pt[1].y,
ol->corner_radius);