diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-09-21 20:42:38 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-09-21 20:42:38 +0000 |
| commit | 6675b28dede3e0581a1b1bfb73fb0dd3b5dd1863 (patch) | |
| tree | 1b17d907d7806e020e48e0986e48aa77eede8606 /openbox | |
| parent | 1ad1e91e88af091fddd665f2a6c9e09259bd31ef (diff) | |
place so to avoid windows in layers above the window being placed!
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/place.c | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/openbox/place.c b/openbox/place.c index d28d47c3..967b32d3 100644 --- a/openbox/place.c +++ b/openbox/place.c @@ -211,19 +211,34 @@ static gboolean place_smart(ObClient *client, gint *x, gint *y, spaces = area_add(spaces, screen_area_monitor(client->desktop, i)); if (type == SMART_FULL || type == SMART_FOCUSED) { + gboolean found_foc = FALSE, stop = FALSE; + ObClient *foc; GList *list; list = focus_order[client->desktop == DESKTOP_ALL ? screen_desktop : client->desktop]; + foc = list ? list->data : NULL; - for (it = list; it; it = g_list_next(it)) { - ObClient *c = it->data; + for (it = stacking_list; it && !stop; it = g_list_next(it)) + { + ObClient *c; + + if (WINDOW_IS_CLIENT(it->data)) + c = it->data; + else + continue; if (!SMART_IGNORE(client, c)) { - spaces = area_remove(spaces, &c->frame->area); - if (type == SMART_FOCUSED) - break; + if (type == SMART_FOCUSED) { + if (c->layer <= client->layer && found_foc) + stop = TRUE; + } + if (!stop) + spaces = area_remove(spaces, &c->frame->area); } + + if (c == foc) + found_foc = TRUE; } } else if (type == SMART_GROUP) { /* has to be more than me in the group */ |
