do not move/resize if grabbed client is fullscreen

このコミットが含まれているのは:
Leonardo Hernández Hernández 2022-11-25 12:15:55 -06:00
コミット c91d21b68f
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: E538897EE11B9624
1個のファイルの変更1行の追加1行の削除

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 */