diff --git a/src/dispatch/bind_define.h b/src/dispatch/bind_define.h index 6ef70e4..477db5d 100644 --- a/src/dispatch/bind_define.h +++ b/src/dispatch/bind_define.h @@ -293,8 +293,11 @@ 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) || grabc->isfullscreen) + if (!grabc || client_is_unmanaged(grabc) || grabc->isfullscreen || + grabc->ismaxmizescreen) { + grabc = NULL; return; + } /* Float the window and tell motionnotify to grab it */ if (grabc->isfloating == 0 && arg->ui == CurMove) { grabc->drag_to_tile = true;