add group transients to other transients who arent group transients. is that english? YEP

This commit is contained in:
Dana Jansens 2007-04-26 02:32:50 +00:00
parent e896709c90
commit d9b25d4884

View file

@ -1134,7 +1134,8 @@ void client_update_transient_for(ObClient *self)
/* remove from old parents */
for (it = self->group->members; it; it = g_slist_next(it)) {
ObClient *c = it->data;
if (c != self && !c->transient_for)
if (c != self && (!c->transient_for ||
c->transient_for != OB_TRAN_GROUP))
c->transients = g_slist_remove(c->transients, self);
}
} else if (self->transient_for != NULL) { /* transient of window */
@ -1149,7 +1150,8 @@ void client_update_transient_for(ObClient *self)
/* add to new parents */
for (it = self->group->members; it; it = g_slist_next(it)) {
ObClient *c = it->data;
if (c != self && !c->transient_for)
if (c != self && (!c->transient_for ||
c->transient_for != OB_TRAN_GROUP))
c->transients = g_slist_append(c->transients, self);
}