commit d8831b84fcea09b91315b248aa12b7b0cdc58efb
parent 907a245f5fc0cfe22d60007a24f405b85920d5d4
Author: Kris Maglione <jg@suckless.org>
Date: Sun, 3 Feb 2008 17:45:28 -0500
Don't make a window fullscreen based on size if it sets an EWMH type.
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/cmd/wmii/client.c b/cmd/wmii/client.c
@@ -164,6 +164,7 @@ client_manage(Client *c) {
if(Dx(c->r) == Dx(screen->r))
if(Dy(c->r) == Dy(screen->r))
+ if(c->w.ewmh.type == 0)
fullscreen(c, true);
tags = getprop_string(&c->w, "_WMII_TAGS");