From 85d8697676f81a863b980e12ba0bf7a132f641cf Mon Sep 17 00:00:00 2001 From: oga Date: Fri, 25 Sep 2009 15:57:49 +0000 Subject: With Xinerama enabled, the borders of a maximized window will show up on all adjacent screens. This patch hides the borders while the window is maximized. From Bertrand Janin; thanks! ok okan@ --- client.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/client.c b/client.c index 10dbdb9..6cf1d5b 100644 --- a/client.c +++ b/client.c @@ -244,8 +244,8 @@ client_maximize(struct client_ctx *cc) ymax = xine->height; } calc: - cc->geom.x = x_org - cc->bwidth + Conf.gap_left; - cc->geom.y = y_org - cc->bwidth + Conf.gap_top; + cc->geom.x = x_org + Conf.gap_left; + cc->geom.y = y_org + Conf.gap_top; cc->geom.height = ymax - (Conf.gap_top + Conf.gap_bottom); cc->geom.width = xmax - (Conf.gap_left + Conf.gap_right); cc->flags |= CLIENT_DOMAXIMIZE; @@ -323,6 +323,7 @@ client_resize(struct client_ctx *cc) CLIENT_HMAXIMIZED); if (cc->flags & CLIENT_DOMAXIMIZE) { + cc->bwidth = 0; cc->flags &= ~CLIENT_DOMAXIMIZE; cc->flags |= CLIENT_MAXIMIZED; } else if (cc->flags & CLIENT_DOVMAXIMIZE) { @@ -331,8 +332,12 @@ client_resize(struct client_ctx *cc) } else if (cc->flags & CLIENT_DOHMAXIMIZE) { cc->flags &= ~CLIENT_DOHMAXIMIZE; cc->flags |= CLIENT_HMAXIMIZED; + } else { + cc->bwidth = Conf.bwidth; } + client_draw_border(cc); + XMoveResizeWindow(X_Dpy, cc->win, cc->geom.x, cc->geom.y, cc->geom.width, cc->geom.height); xev_reconfig(cc); -- cgit 1.4.1