diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-06-07 04:22:56 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-06-07 04:22:56 +0000 |
| commit | 94140a4b359d5e570a8a886dc359d64f5fcaaf86 (patch) | |
| tree | 9936288cafd600c78b4daba05135731156cb1270 /openbox/stacking.c | |
| parent | a79e51c64fdfa1ffd303a5a96c6ae9e393b1353a (diff) | |
get rid of client->transient_for. just client->parents and client->transient_for_group now.
Diffstat (limited to 'openbox/stacking.c')
| -rw-r--r-- | openbox/stacking.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/stacking.c b/openbox/stacking.c index 0c7e38fd..4b01f45d 100644 --- a/openbox/stacking.c +++ b/openbox/stacking.c @@ -233,7 +233,7 @@ static void restack_windows(ObClient *selected, gboolean raise) wins = g_list_append(wins, selected); /* if selected window is transient for group then raise it above others */ - if (selected->transient_for == OB_TRAN_GROUP) { + if (selected->transient_for_group) { /* if it's modal, raise it above those also */ if (selected->modal) { wins = g_list_concat(wins, group_modals); |
