From 99b2fed8f5002f1539a48e8790e2a0ee8f494331 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Sun, 16 Jan 2005 00:14:03 +0000 Subject: [PATCH] fix iconify action to fallback focus correctly --- CHANGELOG | 1 + openbox/action.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index 558231ed..71633794 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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) -- 2.44.0