diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-06-04 20:46:49 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-06-04 20:46:49 +0000 |
| commit | 9a7c4de2eb73826da9b4415541735f8d7c161c23 (patch) | |
| tree | 1e79a60dcbd83fab6485cc9dcd7bfbbf18733f42 /openbox | |
| parent | 62d9a341381729a02ee174f25f197b22499e189f (diff) | |
don't copy the desktop from group parents when they are omnipresent
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/client.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/openbox/client.c b/openbox/client.c index fa67e367..ee8001c9 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -1152,6 +1152,9 @@ static void client_get_desktop(ObClient *self) for (it = self->group->members; it; it = g_slist_next(it)) { ObClient *c = it->data; + + if (c->desktop == DESKTOP_ALL) continue; + if (c != self) { if (first) { all = c->desktop; |
