diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-04 23:30:13 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-04 23:30:13 +0000 |
| commit | 27138313717e161cd9d9b33b562b26eb95aef342 (patch) | |
| tree | 5b7e3622c15b71b0640c08e79ec457b232ab9009 | |
| parent | 431035df66a6d541ba715619b3080b4e267bc78a (diff) | |
missing paranthesis
| -rw-r--r-- | openbox/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/client.c b/openbox/client.c index 07cb5938..183da24e 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -1765,7 +1765,7 @@ void client_update_wmhints(ObClient *self) */ if (self->transient && ((self->transient_for == NULL && oldgroup == NULL) || - self->transient_for == OB_TRAN_GROUP && self->group == NULL)) + (self->transient_for == OB_TRAN_GROUP && !self->group))) client_update_transient_for(self); } |
