From 4466efa5538dd20997a358c5e8aa4b93e78d3182 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 26 Jan 1994 21:09:54 +0000 Subject: [PATCH] (x_set_mouse_position): Don't raise the frame. --- src/xterm.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/xterm.c b/src/xterm.c index 2e7ed52597b..0e8e37fa970 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -4585,7 +4585,9 @@ x_set_mouse_position (f, x, y) { int pix_x, pix_y; +#if 0 /* Let the user ask for this if he wants it. */ x_raise_frame (f); +#endif pix_x = CHAR_TO_PIXEL_COL (f, x) + FONT_WIDTH (f->display.x->font) / 2; pix_y = CHAR_TO_PIXEL_ROW (f, y) + FONT_HEIGHT (f->display.x->font) / 2; -- 2.39.5