From: Dana Jansens Date: Wed, 1 Oct 2003 17:51:20 +0000 (+0000) Subject: use frame->visible instead of the desktop number X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=c88e66b8fff4b51a26392a8a45647af8233d4d9f;p=chaz%2Fopenbox use frame->visible instead of the desktop number --- diff --git a/openbox/client.c b/openbox/client.c index a17c73da..8b008e9b 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -3175,7 +3175,7 @@ ObClient* client_under_pointer() for (it = stacking_list; it != NULL; it = it->next) { if (WINDOW_IS_CLIENT(it->data)) { ObClient *c = WINDOW_AS_CLIENT(it->data); - if (c->desktop == screen_desktop && + if (c->frame->visible && RECT_CONTAINS(c->frame->area, x, y)) { ret = c; break;