when a window is being kept on screen (espcially from mapping more or less) and the position didnt come from the user (USPosition) then force the top left corner of the app on screen so it doesnt hide behind panels or whatever and you cant get at the titlebar

This commit is contained in:
Dana Jansens 2007-05-23 01:15:07 +00:00
parent 89c7b236b5
commit 6fb3e62a31

View file

@ -962,16 +962,13 @@ gboolean client_find_onscreen(ObClient *self, gint *x, gint *y, gint w, gint h,
* xterm -geometry resolution-width/2 will work fine. Trying to * xterm -geometry resolution-width/2 will work fine. Trying to
* place it completely offscreen will be handled in the above code. * place it completely offscreen will be handled in the above code.
* Sorry for this confused comment, i am tired. */ * Sorry for this confused comment, i am tired. */
if (fw <= mon_a->width) { if (rudel && !self->strut.left && *x < mon_a->x) *x = mon_a->x;
if (rudel && !self->strut.left && *x < mon_a->x) *x = mon_a->x; if (ruder && !self->strut.right && *x + fw > mon_a->x + mon_a->width)
if (ruder && !self->strut.right && *x + fw > mon_a->x + mon_a->width) *x = mon_a->x + MAX(0, mon_a->width - fw);
*x = mon_a->x + mon_a->width - fw;
} if (rudet && !self->strut.top && *y < mon_a->y) *y = mon_a->y;
if (fh <= mon_a->height) { if (rudeb && !self->strut.bottom && *y + fh > mon_a->y + mon_a->height)
if (rudet && !self->strut.top && *y < mon_a->y) *y = mon_a->y; *y = mon_a->y + MAX(0, mon_a->height - fh);
if (rudeb && !self->strut.bottom && *y + fh > mon_a->y + mon_a->height)
*y = mon_a->y + mon_a->height - fh;
}
/* get where the client should be */ /* get where the client should be */
frame_frame_gravity(self->frame, x, y, w, h); frame_frame_gravity(self->frame, x, y, w, h);