From b0e078314674bc0585d19f6ade27d6b958e2de0b Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Tue, 22 Dec 2009 10:50:48 -0500 Subject: [PATCH] windows without a group are not all the same app --- openbox/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbox/client.c b/openbox/client.c index a87851b0..c7b68e29 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -3515,7 +3515,7 @@ void client_set_desktop(ObClient *self, guint target, gboolean client_is_in_application(ObClient *self, ObClient *search) { /* XXX FIXME make this better */ - return self->group == search->group; + return self->group && self->group == search->group; } gboolean client_is_direct_child(ObClient *parent, ObClient *child) -- 2.34.1