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 /draw.c | |
parent | 671442e89d6e8e8c42912df08a82466f126a7b3b (diff) | |
download | dwm-338c0838580b32f1258a800392d93cf973baf1e6.tar.gz |
renamed untiled into floating, keeping tiled instead of tiling (afaik tiled sounds more correct) - English speakers convinced me
Diffstat (limited to 'draw.c')
-rw-r--r-- | draw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/draw.c b/draw.c index 58f3998..e0a93fe 100644 --- a/draw.c +++ b/draw.c @@ -81,7 +81,7 @@ drawstatus(void) { dc.x = x; if(sel) { drawtext(sel->name, dc.sel); - drawsquare(sel->ismax, sel->isuntiled, dc.sel); + drawsquare(sel->ismax, sel->isfloating, dc.sel); } else drawtext(NULL, dc.norm); |