From: handa Date: Thu, 5 Aug 2004 06:45:29 +0000 (+0000) Subject: (update_seq_area): Fix sign of yoff. X-Git-Tag: REL-0-9-1~19 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=8a792bcba11377b0819b4a19fc838e92cb1b23ad;p=m17n%2Flibotf.git (update_seq_area): Fix sign of yoff. --- diff --git a/example/otfview.c b/example/otfview.c index 9fa625f..d4b2c40 100644 --- a/example/otfview.c +++ b/example/otfview.c @@ -415,7 +415,7 @@ update_seq_area () XCopyArea (display, bmp->pixmap, seq_pixmap, gc_or, glyph_x + bmp->x, glyph_y + bmp->y, bmp->width, bmp->height, - x + bmp->x + xoff, glyph_y + bmp->y + yoff); + x + bmp->x + xoff, glyph_y + bmp->y - yoff); x += prev_width = advance; } XtSetArg (arg[0], XtNbitmap, seq_pixmap);