diff options
| author | Mikael Magnusson <mikachu@comhem.se> | 2005-01-16 00:14:03 +0000 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@comhem.se> | 2005-01-16 00:14:03 +0000 |
| commit | 99b2fed8f5002f1539a48e8790e2a0ee8f494331 (patch) | |
| tree | 534db547e45d2cd849558f03075d29b0e7319d2e | |
| parent | 9f607e25459434deb85c0c1b757af8599f07a9a5 (diff) | |
fix iconify action to fallback focus correctly
| -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) |
