From 338c0838580b32f1258a800392d93cf973baf1e6 Mon Sep 17 00:00:00 2001 From: "Anselm R. Garbe" Date: Thu, 22 Feb 2007 22:10:16 +0100 Subject: renamed untiled into floating, keeping tiled instead of tiling (afaik tiled sounds more correct) - English speakers convinced me --- client.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'client.c') diff --git a/client.c b/client.c index 4ba15c4..d180278 100644 --- a/client.c +++ b/client.c @@ -203,8 +203,8 @@ manage(Window w, XWindowAttributes *wa) { updatetitle(c); for(t = clients; t && t->win != trans; t = t->next); settags(c, t); - if(!c->isuntiled) - c->isuntiled = (t != NULL) || c->isfixed; + if(!c->isfloating) + c->isfloating = (t != NULL) || c->isfixed; attach(c); attachstack(c); c->isbanned = True; @@ -285,10 +285,10 @@ resize(Client *c, int x, int y, int w, int h, Bool sizehints) { } void -toggletiled(const char *arg) { - if(!sel || lt->arrange == untile) +togglefloating(const char *arg) { + if(!sel || lt->arrange == floating) return; - sel->isuntiled = !sel->isuntiled; + sel->isfloating = !sel->isfloating; lt->arrange(); } -- cgit v1.2.3