commit bb7ac65b3e0feaee7472f3d4566a600ee9ac91b6
parent da725f1f83fe1733f32717bb62fab1b22142041e
Author: Anselm R. Garbe <garbeam@wmii.de>
Date: Wed, 12 Apr 2006 12:33:28 +0200
forgot a !
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmd/wm/rule.c b/cmd/wm/rule.c
@@ -139,7 +139,7 @@ apply_rules(Client *c)
match(c, c->classinst);
Fallback:
- if(!strlen(c->tags) || (view.size && !strncmp(c->tags, "*", 2)))
+ if(!strlen(c->tags) || (!view.size && !strncmp(c->tags, "*", 2)))
cext_strlcpy(c->tags, "nil", sizeof(c->tags));
}