From 8a792bcba11377b0819b4a19fc838e92cb1b23ad Mon Sep 17 00:00:00 2001 From: handa Date: Thu, 5 Aug 2004 06:45:29 +0000 Subject: [PATCH] (update_seq_area): Fix sign of yoff. --- example/otfview.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 1.7.10.4