]> Dogcows Code - chaz/openbox/commitdiff
use frame->visible instead of the desktop number
authorDana Jansens <danakj@orodu.net>
Wed, 1 Oct 2003 17:51:20 +0000 (17:51 +0000)
committerDana Jansens <danakj@orodu.net>
Wed, 1 Oct 2003 17:51:20 +0000 (17:51 +0000)
openbox/client.c

index a17c73daaa43d92100a41c1dffa8d519457639a2..8b008e9b2a424bba780a76adb3377b6eca6b25dd 100644 (file)
@@ -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;
This page took 0.0278 seconds and 4 git commands to generate.