summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPo Lu <luangruo@yahoo.com>2022-01-25 08:21:55 +0800
committerPo Lu <luangruo@yahoo.com>2022-01-25 08:22:30 +0800
commiteb4edfa0c86c27d0f978bc2551ba4ebee9dda63f (patch)
tree19c2bb236718975b0d049b1eb19a5a4ff2cd58fb /src
parent667e212048a1443b6f72647176aec701d18474c9 (diff)
Fix GTK native input on scaled displays
* src/xfns.c (xic_set_preeditarea): Scale preedit spot rectangle before giving it to GTK.
Diffstat (limited to 'src')
-rw-r--r--src/xfns.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/xfns.c b/src/xfns.c
index 33d8d98e70b..bb1e431ff87 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -2844,14 +2844,16 @@ xic_set_preeditarea (struct window *w, int x, int y)
}
#ifdef USE_GTK
GdkRectangle rect;
+ int scale = xg_get_scale (f);
+
rect.x = (WINDOW_TO_FRAME_PIXEL_X (w, x)
+ WINDOW_LEFT_FRINGE_WIDTH (w)
- + WINDOW_LEFT_MARGIN_WIDTH (w));
+ + WINDOW_LEFT_MARGIN_WIDTH (w)) / scale;
rect.y = (WINDOW_TO_FRAME_PIXEL_Y (w, y)
+ FRAME_TOOLBAR_HEIGHT (f)
- + FRAME_MENUBAR_HEIGHT (f));
- rect.width = w->phys_cursor_width;
- rect.height = w->phys_cursor_height;
+ + FRAME_MENUBAR_HEIGHT (f)) / scale;
+ rect.width = w->phys_cursor_width / scale;
+ rect.height = w->phys_cursor_height / scale;
gtk_im_context_set_cursor_location (FRAME_X_OUTPUT (f)->im_context,
&rect);