]> Dogcows Code - chaz/openbox/commitdiff
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 558231ed9c1f3b5aa13d72684c45efea5ba213c8..71633794f624288ca4467f4b02aa1ceedd3bda08 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 a6323d6f636a1cd7672978281e2369f0f6ab3ea4..ef8052e717108747f5e19c1050049e46bcf7c609 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)
This page took 0.027033 seconds and 4 git commands to generate.