From 754b72f96a7931913a1e281da3d92843843c7fb6 Mon Sep 17 00:00:00 2001 From: sabetts Date: Tue, 27 Feb 2001 03:56:06 +0000 Subject: (save_mouse_position): stores the mouse position relative to the root window. (set_active_window): warps the mouse relative to the root window. --- src/list.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/list.c') diff --git a/src/list.c b/src/list.c index e15d416..ca79794 100644 --- a/src/list.c +++ b/src/list.c @@ -367,7 +367,7 @@ save_mouse_position (rp_window *win) ignore_badwindow = 1; XQueryPointer (dpy, win->w, &root_win, &child_win, - &win_x, &win_y, &win->mouse_x, &win->mouse_y, &mask); + &win->mouse_x, &win->mouse_y, &win_x, &win_y, &mask); ignore_badwindow = 0; } @@ -391,7 +391,8 @@ set_active_window (rp_window *rp_w) save_mouse_position (rp_current_window); } - XWarpPointer (dpy, None, rp_w->w, 0, 0, 0, 0, rp_w->mouse_x, rp_w->mouse_y); + XWarpPointer (dpy, None, rp_w->scr->root, + 0, 0, 0, 0, rp_w->mouse_x, rp_w->mouse_y); XSync (dpy, False); XSetInputFocus (dpy, rp_w->w, -- cgit v1.2.3