From: Dana Jansens Date: Tue, 22 Dec 2009 15:50:48 +0000 (-0500) Subject: windows without a group are not all the same app X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=b0e078314674bc0585d19f6ade27d6b958e2de0b;p=dana%2Fopenbox.git windows without a group are not all the same app --- 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)