diff options
author | okan | 2008-07-15 22:06:48 +0000 |
---|---|---|
committer | okan | 2008-07-15 22:06:48 +0000 |
commit | f0173794de194ddd5eaddcd5af8793a3465b3bea (patch) | |
tree | 0d77c61c7521d2f960aa239489d55154d5f223b1 /client.c | |
parent | 1f287f14b64e942fe30d938a9f18ad035528c765 (diff) | |
download | cwm-f0173794de194ddd5eaddcd5af8793a3465b3bea.tar.gz |
save an X call and use what we already have stored.
ok oga@
Diffstat (limited to 'client.c')
-rw-r--r-- | client.c | 14 |
1 files changed, 5 insertions, 9 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: client.c,v 1.36 2008/07/15 13:52:02 okan Exp $ + * $Id: client.c,v 1.37 2008/07/15 22:06:48 okan Exp $ */ #include "headers.h" @@ -321,21 +321,17 @@ client_gravitate(struct client_ctx *cc, int yes) void client_maximize(struct client_ctx *cc) { + struct screen_ctx *sc = CCTOSC(cc); + if (cc->flags & CLIENT_MAXIMIZED) { cc->geom = cc->savegeom; } else { - XWindowAttributes rootwin_geom; - struct screen_ctx *sc = CCTOSC(cc); - - XGetWindowAttributes(X_Dpy, sc->rootwin, &rootwin_geom); if (!(cc->flags & CLIENT_VMAXIMIZED)) cc->savegeom = cc->geom; cc->geom.x = Conf.gap_left; cc->geom.y = Conf.gap_top; - cc->geom.height = rootwin_geom.height - - (Conf.gap_top + Conf.gap_bottom); - cc->geom.width = rootwin_geom.width - - (Conf.gap_left + Conf.gap_right); + cc->geom.height = sc->ymax - (Conf.gap_top + Conf.gap_bottom); + cc->geom.width = sc->xmax - (Conf.gap_left + Conf.gap_right); cc->flags |= CLIENT_DOMAXIMIZE; } |