diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-02-22 22:10:16 +0100 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-02-22 22:10:16 +0100 |
commit | 338c0838580b32f1258a800392d93cf973baf1e6 (patch) | |
tree | 30387958f30336d7617f63a085128cbe40651d2f /tag.c | |
parent | 671442e89d6e8e8c42912df08a82466f126a7b3b (diff) |
renamed untiled into floating, keeping tiled instead of tiling (afaik tiled sounds more correct) - English speakers convinced me
Diffstat (limited to 'tag.c')
-rw-r--r-- | tag.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |