]> git.eshelyaron.com Git - emacs.git/commitdiff
Use phys cursor height instead of font base to set spot Y
authorPo Lu <luangruo@yahoo.com>
Mon, 10 Jan 2022 06:38:18 +0000 (14:38 +0800)
committerPo Lu <luangruo@yahoo.com>
Mon, 10 Jan 2022 06:38:18 +0000 (14:38 +0800)
* src/xfns.c (xic_set_xfontset): Use `phys_cursor_height' to
avoid the spot potentially appearing at an incorrect position.

src/xfns.c

index cd48419fbd33e4a6bc0ed9f36078d796d3c9442a..028ee29a4aa878b534af196668089c641d9fb28a 100644 (file)
@@ -2822,8 +2822,11 @@ xic_set_preeditarea (struct window *w, int x, int y)
 
   if (FRAME_XIC (f))
     {
-      spot.x = WINDOW_TO_FRAME_PIXEL_X (w, x) + WINDOW_LEFT_FRINGE_WIDTH (w) + WINDOW_LEFT_MARGIN_WIDTH(w);
-      spot.y = WINDOW_TO_FRAME_PIXEL_Y (w, y) + FONT_BASE (FRAME_FONT (f));
+      spot.x = (WINDOW_TO_FRAME_PIXEL_X (w, x)
+               + WINDOW_LEFT_FRINGE_WIDTH (w)
+               + WINDOW_LEFT_MARGIN_WIDTH (w));
+      spot.y = (WINDOW_TO_FRAME_PIXEL_Y (w, y)
+               + w->phys_cursor_height);
 
       if (FRAME_XIC_STYLE (f) & XIMPreeditCallbacks)
        attr = XVaCreateNestedList (0, XNSpotLocation, &spot,