From 17ec9220772686266b39acfacff084a2e50ebcee Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Tue, 2 Oct 2007 10:36:49 +0200 Subject: [PATCH] bug fix: set not matched tags to False instead of nothing --- tag.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tag.c b/tag.c index 0d51ac50..edf93def 100644 --- a/tag.c +++ b/tag.c @@ -86,6 +86,8 @@ applyrules(Client * c, awesome_config *awesomeconf) matched = True; c->tags[j] = True; } + else + c->tags[j] = False; } p_delete(&prop); if(ch.res_class)