restore a comment and add another for clarity.

This commit is contained in:
okan 2011-09-05 07:37:55 +00:00
parent 44d8b1d3ac
commit d85b3adc0c

View File

@ -300,7 +300,10 @@ client_maximize(struct client_ctx *cc)
if (HasXinerama) { if (HasXinerama) {
XineramaScreenInfo *xine; XineramaScreenInfo *xine;
/* * that's probably more fair than if just the origin of * a window is poking over a boundary /*
* pick screen that the middle of the window is on.
* that's probably more fair than if just the origin of
* a window is poking over a boundary
*/ */
xine = screen_find_xinerama(sc, xine = screen_find_xinerama(sc,
cc->geom.x + cc->geom.width / 2, cc->geom.x + cc->geom.width / 2,
@ -394,6 +397,7 @@ client_horizmaximize(struct client_ctx *cc)
cc->savegeom.x = cc->geom.x; cc->savegeom.x = cc->geom.x;
cc->savegeom.width = cc->geom.width; cc->savegeom.width = cc->geom.width;
/* if this will make us fully maximized then remove boundary */
if ((cc->flags & CLIENT_MAXFLAGS) == CLIENT_VMAXIMIZED) { if ((cc->flags & CLIENT_MAXFLAGS) == CLIENT_VMAXIMIZED) {
cc->geom.height += cc->bwidth * 2; cc->geom.height += cc->bwidth * 2;
cc->bwidth = 0; cc->bwidth = 0;