fix iconify action to fallback focus correctly

This commit is contained in:
Mikael Magnusson 2005-01-16 00:14:03 +00:00
parent 9f607e2545
commit 99b2fed8f5
2 changed files with 3 additions and 0 deletions

View file

@ -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

View file

@ -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)