diff options
author | Okan Demirmen <okan@cvs.openbsd.org> | 2012-10-29 19:46:04 +0000 |
---|---|---|
committer | Okan Demirmen <okan@cvs.openbsd.org> | 2012-10-29 19:46:04 +0000 |
commit | 555a0fa7526cb0b5701540a0ce365551a25b6f66 (patch) | |
tree | e60a966f34221bacf19759c3ec630fc006e509aa | |
parent | 77e2d7b72fd3ef93b5d87d99eb30e72927428bed (diff) |
on reload, run each client through conf_client to pick up potential
ignore and bwidth changes; also add a hack for existing maximized
windows so they don't inherit a new bwidth.
based on a diff from, and discussion with, Tiago Cunha.
-rw-r--r-- | app/cwm/conf.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/app/cwm/conf.c b/app/cwm/conf.c index 60e49ca66..efe905451 100644 --- a/app/cwm/conf.c +++ b/app/cwm/conf.c @@ -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. * - * $OpenBSD: conf.c,v 1.99 2012/05/13 15:15:54 okan Exp $ + * $OpenBSD: conf.c,v 1.100 2012/10/29 19:46:03 okan Exp $ */ #include <sys/param.h> @@ -104,8 +104,13 @@ conf_reload(struct conf *c) conf_font(c, sc); menu_init(sc); } - TAILQ_FOREACH(cc, &Clientq, entry) + TAILQ_FOREACH(cc, &Clientq, entry) { + conf_client(cc); + /* XXX Does not take hmax/vmax into account. */ + if ((cc->flags & CLIENT_MAXFLAGS) == CLIENT_MAXIMIZED) + cc->bwidth = 0; client_draw_border(cc); + } } static struct { |