fix iconify action to fallback focus correctly
authorMikael Magnusson <mikachu@comhem.se>
Sun, 16 Jan 2005 00:14:03 +0000 (00:14 +0000)
committerMikael Magnusson <mikachu@comhem.se>
Sun, 16 Jan 2005 00:14:03 +0000 (00:14 +0000)
CHANGELOG
openbox/action.c

index 558231e..7163379 100644 (file)
--- 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
index a6323d6..ef8052e 100644 (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)