all repos — openbox @ 469b0c1ca9c78e3dd0c030dea7dcb9038f557fe6

openbox fork - make it a bit more like ryudo

handle case where session saves a 0 width/height (for maximized windows!)
Dana Jansens danakj@orodu.net
commit

469b0c1ca9c78e3dd0c030dea7dcb9038f557fe6

parent

34446063fa6f954f81200f2778c099865b374d2c

1 files changed, 7 insertions(+), 5 deletions(-)

jump to
M openbox/client.copenbox/client.c

@@ -533,12 +533,14 @@ return;

self->session = it->data; - RECT_SET(self->area, self->session->x, self->session->y, - self->session->w, self->session->h); + RECT_SET_POINT(self->area, self->session->x, self->session->y); self->positioned = TRUE; - if (self->session->w > 0 && self->session->h > 0) - XResizeWindow(ob_display, self->window, - self->session->w, self->session->h); + if (self->session->w > 0) + self->area.width = self->session->w; + if (self->session->h > 0) + self->area.height = self->session->h; + XResizeWindow(ob_display, self->window, + self->area.width, self->area.height); self->desktop = (self->session->desktop == DESKTOP_ALL ? self->session->desktop :