]> git.sur5r.net Git - i3/i3/commitdiff
retab! src/container.c
authorMichael Stapelberg <michael@stapelberg.de>
Tue, 22 Dec 2009 22:43:05 +0000 (23:43 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Tue, 22 Dec 2009 22:43:05 +0000 (23:43 +0100)
src/container.c

index a51c723528c1ff80d0816822a204c61e11a2fcb0..8533fd493d8e14116449c6a1936a4edbc55fbedf 100644 (file)
  *
  */
 int container_mode(Container *con, bool for_frame) {
-       int num_clients = 0;
-       Client *client;
+        int num_clients = 0;
+        Client *client;
 
-       if (con == NULL || con->mode == MODE_DEFAULT)
-               return MODE_DEFAULT;
+        if (con == NULL || con->mode == MODE_DEFAULT)
+                return MODE_DEFAULT;
 
         if (!for_frame)
                 return con->mode;
 
-       CIRCLEQ_FOREACH(client, &(con->clients), clients)
-               num_clients++;
+        CIRCLEQ_FOREACH(client, &(con->clients), clients)
+                num_clients++;
 
-       /* If the container contains only one client, mode is irrelevant */
-       if (num_clients == 1) {
-               DLOG("mode to default\n");
-               return MODE_DEFAULT;
-       }
+        /* If the container contains only one client, mode is irrelevant */
+        if (num_clients == 1) {
+                DLOG("mode to default\n");
+                return MODE_DEFAULT;
+        }
 
-       return con->mode;
+        return con->mode;
 }