From: Dana Jansens Date: Mon, 29 Sep 2003 07:25:00 +0000 (+0000) Subject: when a window is lowered, move it to the bottom of the focus order list X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=8feba8518b4c990e91e7d870172b07d8489e4a1e;p=chaz%2Fopenbox when a window is lowered, move it to the bottom of the focus order list --- diff --git a/openbox/action.c b/openbox/action.c index 7d8197e4..f7389cb3 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -1054,6 +1054,8 @@ void action_lower(union ActionData *data) client_action_start(data); stacking_lower(CLIENT_AS_WINDOW(data->client.any.c)); client_action_end(data); + + focus_order_to_bottom(data->client.any.c); } void action_close(union ActionData *data)