diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-08 22:36:52 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-08 22:36:52 +0000 |
| commit | f0e5332b4ae5504f167d75e853c13e6f718ce70a (patch) | |
| tree | d260accee8dd002f9e9a74152aaf484cec4b3e5f | |
| parent | 370b5ba27d77c3eecb984f2efa64a4263d454112 (diff) | |
but deiconify
| -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 e2adf29f..d50388e7 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -2857,7 +2857,7 @@ static void client_iconify_recursive(ObClient *self, void client_iconify(ObClient *self, gboolean iconic, gboolean curdesk) { - if (self->functions & OB_CLIENT_FUNC_ICONIFY) { + if (self->functions & OB_CLIENT_FUNC_ICONIFY || !iconic) { /* move up the transient chain as far as possible first */ self = client_search_top_normal_parent(self); client_iconify_recursive(self, iconic, curdesk); |
