put group members above the window when lowering it

This commit is contained in:
Dana Jansens 2003-06-28 17:28:48 +00:00
parent 4695749aab
commit b23fa507a8

View file

@ -245,7 +245,7 @@ void stacking_lower(ObWindow *window)
window = top_transient(window); window = top_transient(window);
wins = pick_windows(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); lower(wins);
g_list_free(wins); g_list_free(wins);
} }