X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fplace.c;h=4717cbfc3c3ca98ca962d4a7f8fb093a6e562b51;hb=5009498d5934944c70b6c520ca45a727800e9528;hp=260299b38242dfe5d7f94c72e1a6a3ab84b36c9f;hpb=895554765dcf85e577966f75d351e84774a339a4;p=chaz%2Fopenbox diff --git a/openbox/place.c b/openbox/place.c index 260299b3..4717cbfc 100644 --- a/openbox/place.c +++ b/openbox/place.c @@ -2,7 +2,7 @@ place.c for the Openbox window manager Copyright (c) 2006 Mikael Magnusson - Copyright (c) 2003 Ben Jansens + Copyright (c) 2003-2007 Dana Jansens This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -297,11 +297,9 @@ static gboolean place_smart(ObClient *client, gint *x, gint *y, 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; + foc = focus_order_find_first(client->desktop == DESKTOP_ALL ? + screen_desktop : client->desktop); for (; it && !stop; it = g_list_next(it)) { ObClient *c; @@ -372,6 +370,7 @@ static gboolean place_under_mouse(ObClient *client, gint *x, gint *y) Rect *area; area = pick_pointer_head(client); + screen_pointer_pos(&px, &py); l = area->x; t = area->y; @@ -430,7 +429,7 @@ static gboolean place_transient(ObClient *client, gint *x, gint *y) gint l, r, t, b; for (it = client->group->members; it; it = g_slist_next(it)) { ObClient *m = it->data; - if (!(m == client || m->transient_for)) { + if (!(m == client || m->transient_for) && client_normal(m)) { if (first) { l = RECT_LEFT(m->frame->area); t = RECT_TOP(m->frame->area);