Xinqi Bao's Git
projects
/
dwm.git
/ commitdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
|
inline
| side by side (parent:
bb0a328
)
applied Gottox' applyrules() fix
author
anselm@anselm1 <unknown>
Sun, 20 Apr 2008 17:17:33 +0000
(18:17 +0100)
committer
anselm@anselm1 <unknown>
Sun, 20 Apr 2008 17:17:33 +0000
(18:17 +0100)
dwm.c
patch
|
blob
|
history
diff --git
a/dwm.c
b/dwm.c
index
9dd501a
..
852f7ac
100644
(file)
--- a/
dwm.c
+++ b/
dwm.c
@@
-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))
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) {
{
c->isfloating = r->isfloating;
if(r->tag) {