From: a@null Date: Fri, 19 Dec 2008 23:41:31 +0000 (+0000) Subject: applied yiyus applyrules() patch X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=commitdiff_plain;h=fef4614772c222fe5b095f89ddbcc7a5a34904ed;hp=be39dddcc5bad25e0e1430228e196c3837f1c3e7 applied yiyus applyrules() patch --- diff --git a/dwm.c b/dwm.c index 489ba80..5d2d541 100644 --- a/dwm.c +++ b/dwm.c @@ -270,7 +270,7 @@ applyrules(Client *c) { && (!r->class || (ch.res_class && strstr(ch.res_class, r->class))) && (!r->instance || (ch.res_name && strstr(ch.res_name, r->instance)))) { c->isfloating = r->isfloating; - c->tags |= r->tags & TAGMASK; + c->tags |= r->tags & TAGMASK ? r->tags & TAGMASK : tagset[seltags]; } } if(ch.res_class)