put group members above the window when lowering it
authorDana Jansens <danakj@orodu.net>
Sat, 28 Jun 2003 17:28:48 +0000 (17:28 +0000)
committerDana Jansens <danakj@orodu.net>
Sat, 28 Jun 2003 17:28:48 +0000 (17:28 +0000)
openbox/stacking.c

index e31974f..f8e66dd 100644 (file)
@@ -245,7 +245,7 @@ void stacking_lower(ObWindow *window)
 
     window = top_transient(window);
     wins = pick_windows(window);
-    wins = g_list_concat(wins, pick_group_windows(window));
+    wins = g_list_concat(pick_group_windows(window), wins);
     lower(wins);
     g_list_free(wins);
 }