commit 3c83e0cfb8cfb20cab2775b8da0925fb26a35678
parent db647f2df63c35270f23a970f29a8f155466d9ea
Author: Devin J. Pohly <djpohly@gmail.com>
Date: Tue, 30 Mar 2021 13:56:04 -0500
don't move/resize if already moving/resizing
Fixes #102. The "ideal" behavior might be to ignore buttons other than
the one being used for the action, but this is super-simple and still
seems reasonable.
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/dwl.c b/dwl.c
@@ -1454,8 +1454,7 @@ motionrelative(struct wl_listener *listener, void *data)
void
moveresize(const Arg *arg)
{
- grabc = xytoclient(cursor->x, cursor->y);
- if (!grabc)
+ if (cursor_mode != CurNormal || !(grabc = xytoclient(cursor->x, cursor->y)))
return;
/* Float the window and tell motionnotify to grab it */