From 083611e4343837ff990a939616489a011e84e688 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Fri, 15 Mar 2013 19:27:08 +0100 Subject: [PATCH] =?UTF-8?q?Bugfix:=20Don=E2=80=99t=20warp=20the=20pointer?= =?UTF-8?q?=20when=20dragging=20floating=20windows?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fixes #951 --- src/floating.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/floating.c b/src/floating.c index 4dd44f57..49a4122e 100644 --- a/src/floating.c +++ b/src/floating.c @@ -421,6 +421,8 @@ DRAGGING_CB(drag_window_callback) { /* Check if we cross workspace boundaries while moving */ if (!floating_maybe_reassign_ws(con)) return; + /* Ensure not to warp the pointer while dragging */ + x_set_warp_to(NULL); tree_render(); }