From: Michael Stapelberg Date: Sat, 28 Jun 2014 11:04:52 +0000 (+0200) Subject: Revert "Disable render-time pointer warps if asked" X-Git-Tag: 4.9~82^2^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=1f9057bc4b0b7695589fbba88bee2b33ae47f169;p=i3%2Fi3 Revert "Disable render-time pointer warps if asked" 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. --- 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; }