summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-09-29 07:25:00 +0000
committerDana Jansens <danakj@orodu.net>2003-09-29 07:25:00 +0000
commit8feba8518b4c990e91e7d870172b07d8489e4a1e (patch)
tree3232c1496e7c70b37c3daa1d43713795b54c7456
parentd50cf297e7a7dcc4f6890e6b5d4240dcd24de43d (diff)
when a window is lowered, move it to the bottom of the focus order list
-rw-r--r--openbox/action.c2
1 files changed, 2 insertions, 0 deletions
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)