]> Dogcows Code - chaz/openbox/commitdiff
indenting
authorDana Jansens <danakj@orodu.net>
Mon, 13 Oct 2003 03:48:52 +0000 (03:48 +0000)
committerDana Jansens <danakj@orodu.net>
Mon, 13 Oct 2003 03:48:52 +0000 (03:48 +0000)
openbox/screen.c

index 544bcdbd9ea2bbf064a9ef383ca0d3b8fcb280be..a9a4dd0550a0105a79b797f09e41ac8ce13edce6 100644 (file)
@@ -867,23 +867,23 @@ void screen_show_desktop(gboolean show)
     screen_showing_desktop = show;
 
     if (show) {
-       /* bottom to top */
-       for (it = g_list_last(stacking_list); it != NULL; it = it->prev) {
+        /* bottom to top */
+        for (it = g_list_last(stacking_list); it != NULL; it = it->prev) {
             if (WINDOW_IS_CLIENT(it->data)) {
                 ObClient *client = it->data;
                 if (client->frame->visible && !client_should_show(client))
                     frame_hide(client->frame);
             }
-       }
+        }
     } else {
         /* top to bottom */
-       for (it = stacking_list; it != NULL; it = it->next) {
+        for (it = stacking_list; it != NULL; it = it->next) {
             if (WINDOW_IS_CLIENT(it->data)) {
                 ObClient *client = it->data;
                 if (!client->frame->visible && client_should_show(client))
                     frame_show(client->frame);
             }
-       }
+        }
     }
 
     if (show) {
This page took 0.024175 seconds and 4 git commands to generate.