do not move/resize if grabbed client is fullscreen
This commit is contained in:
parent
3213088aa2
commit
c91d21b68f
1 changed files with 1 additions and 1 deletions
2
dwl.c
2
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 */
|
||||
|
|
Loading…
Reference in a new issue