From 1f9057bc4b0b7695589fbba88bee2b33ae47f169 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Sat, 28 Jun 2014 13:04:52 +0200 Subject: [PATCH] Revert "Disable render-time pointer warps if asked" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit b109b1b20dd51401dc929407453d3acdd8ff5566. Turns out the change in behavior was unexpected by a number of users, so let’s revert it and make those users that want this behavior configure it explicitly. Sorry for the back-and-forth here. --- src/x.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/x.c b/src/x.c index ee638fc2..e1cdc18d 100644 --- a/src/x.c +++ b/src/x.c @@ -1140,8 +1140,7 @@ void x_set_i3_atoms(void) { * */ void x_set_warp_to(Rect *rect) { - if (!config.disable_focus_follows_mouse && - config.mouse_warping != POINTER_WARPING_NONE) + if (config.mouse_warping != POINTER_WARPING_NONE) warp_to = rect; }