be more polite to clients which like to appear outside the window area, but still on the screen
This commit is contained in:
parent
bd4deaebfc
commit
234b12eb73
12
dwm.c
12
dwm.c
@ -958,12 +958,12 @@ manage(Window w, XWindowAttributes *wa) {
|
|||||||
c->bw = wa->border_width;
|
c->bw = wa->border_width;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if(c->x + c->w + 2 * c->bw > wx + ww)
|
if(c->x + c->w + 2 * c->bw > sx + sw)
|
||||||
c->x = wx + ww - c->w - 2 * c->bw;
|
c->x = sx + sw - c->w - 2 * c->bw;
|
||||||
if(c->y + c->h + 2 * c->bw > wy + wh)
|
if(c->y + c->h + 2 * c->bw > sy + sh)
|
||||||
c->y = wy + wh - c->h - 2 * c->bw;
|
c->y = sy + sh - c->h - 2 * c->bw;
|
||||||
c->x = MAX(c->x, wx);
|
c->x = MAX(c->x, sx);
|
||||||
c->y = MAX(c->y, wy);
|
c->y = MAX(c->y, sy);
|
||||||
c->bw = borderpx;
|
c->bw = borderpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user