summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-10-13 03:48:52 +0000
committerDana Jansens <danakj@orodu.net>2003-10-13 03:48:52 +0000
commit7582194997541c831f10a7097ca11be5fb56e453 (patch)
treec73c9bd3a7766f03575f569282e68e25f9260d87
parent2bf58d8fb39c7b320bb046379dcb08091b8ff626 (diff)
indenting
-rw-r--r--openbox/screen.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/openbox/screen.c b/openbox/screen.c
index 544bcdbd..a9a4dd05 100644
--- a/openbox/screen.c
+++ b/openbox/screen.c
@@ -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) {