all repos — openbox @ 99b2fed8f5002f1539a48e8790e2a0ee8f494331

openbox fork - make it a bit more like ryudo

fix iconify action to fallback focus correctly
Mikael Magnusson mikachu@comhem.se
commit

99b2fed8f5002f1539a48e8790e2a0ee8f494331

parent

9f607e25459434deb85c0c1b757af8599f07a9a5

2 files changed, 3 insertions(+), 0 deletions(-)

jump to
M CHANGELOGCHANGELOG

@@ -5,6 +5,7 @@ * Fixed directional focus not getting trapped in omnipresent windows

* 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
M openbox/action.copenbox/action.c

@@ -1035,7 +1035,9 @@ }

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)