commit c91d21b68f436bc61dfce8b3f47beb5855bdd1a2
parent 3213088aa23e1f6cad1a5ba506dfb7318e1011c9
Author: Leonardo Hernández Hernández <leohdz172@protonmail.com>
Date: Fri, 25 Nov 2022 12:15:55 -0600
do not move/resize if grabbed client is fullscreen
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dwl.c b/dwl.c
@@ -1510,7 +1510,7 @@ moveresize(const Arg *arg)
if (cursor_mode != CurNormal && cursor_mode != CurPressed)
return;
xytonode(cursor->x, cursor->y, NULL, &grabc, NULL, NULL, NULL);
- if (!grabc || client_is_unmanaged(grabc))
+ if (!grabc || client_is_unmanaged(grabc) || grabc->isfullscreen)
return;
/* Float the window and tell motionnotify to grab it */