(xic_set_preeditarea): Add the left fringe width to spot.x.

This commit is contained in:
Kenichi Handa 2003-07-28 13:05:25 +00:00
parent c52093761b
commit 17e6d49143
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2003-07-28 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp> (tiny change)
* xfns.c (xic_set_preeditarea): Add the left fringe width to
spot.x.
2003-07-22 Stefan Monnier <monnier@cs.yale.edu>
* xfns.c: Don't check HAVE_PNG_H: autoconf doesn't seem to find it.

View file

@ -2475,7 +2475,7 @@ xic_set_preeditarea (w, x, y)
XVaNestedList attr;
XPoint spot;
spot.x = WINDOW_TO_FRAME_PIXEL_X (w, x);
spot.x = WINDOW_TO_FRAME_PIXEL_X (w, x) + WINDOW_LEFT_FRINGE_WIDTH (w);
spot.y = WINDOW_TO_FRAME_PIXEL_Y (w, y) + FONT_BASE (FRAME_FONT (f));
attr = XVaCreateNestedList (0, XNSpotLocation, &spot, NULL);
XSetICValues (FRAME_XIC (f), XNPreeditAttributes, attr, NULL);