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.
*
*/
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;
}