diff options
| -rw-r--r-- | CHANGELOG | 1 | ||||
| -rw-r--r-- | openbox/action.c | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -5,6 +5,7 @@ * Fixed focus actions when bound to the mouse, normal focus cycle is always linear and directional focus is totally disabled, it makes no sense anyway, just move the mouse. + * Various bug fixes. (I always wanted to write this in a changelog) 3.2: * Added spanish and swedish translations diff --git a/openbox/action.c b/openbox/action.c index a6323d6f..ef8052e7 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -1035,7 +1035,9 @@ void action_unfocus (union ActionData *data) void action_iconify(union ActionData *data) { + client_action_start(data); client_iconify(data->client.any.c, TRUE, TRUE); + client_action_end(data); } void action_raiselower(union ActionData *data) |
