X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=blobdiff_plain;f=tag.c;h=d121c785481007fb899145ce4453f3600d47de37;hp=b8539ac13234be1b7dd04587407b5562f7a7d64c;hb=338c0838580b32f1258a800392d93cf973baf1e6;hpb=671442e89d6e8e8c42912df08a82466f126a7b3b diff --git a/tag.c b/tag.c index b8539ac..d121c78 100644 --- a/tag.c +++ b/tag.c @@ -12,7 +12,7 @@ typedef struct { const char *prop; const char *tags; - Bool isuntiled; + Bool isfloating; } Rule; typedef struct { @@ -83,7 +83,7 @@ settags(Client *c, Client *trans) { ch.res_name ? ch.res_name : "", c->name); for(i = 0; i < nrules; i++) if(regs[i].propregex && !regexec(regs[i].propregex, prop, 1, &tmp, 0)) { - c->isuntiled = rule[i].isuntiled; + c->isfloating = rule[i].isfloating; for(j = 0; regs[i].tagregex && j < ntags; j++) { if(!regexec(regs[i].tagregex, tags[j], 1, &tmp, 0)) { matched = True;