diff options
| author | anselm@anselm1 <unknown> | 2008-04-20 18:17:33 +0100 | 
|---|---|---|
| committer | anselm@anselm1 <unknown> | 2008-04-20 18:17:33 +0100 | 
| commit | 146ff227fe0d231bcfc59268364461ab8850c5fe (patch) | |
| tree | 6a86aaf0473c0782a360806166bd4dcb78c09bac | |
| parent | bb0a328978d0af43ecd86b61d1a351dc5d933702 (diff) | |
applied Gottox' applyrules() fix
| -rw-r--r-- | dwm.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -262,8 +262,8 @@ applyrules(Client *c) {  	for(i = 0; i < LENGTH(rules); i++) {  		r = &rules[i];  		if((!r->title || strstr(c->name, r->title)) -		&& (!ch.res_class || !r->class || strstr(ch.res_class, r->class)) -		&& (!ch.res_name || !r->instance || strstr(ch.res_name, r->instance))) +		&& (!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;  			if(r->tag) { | 
