when a window is lowered, move it to the bottom of the focus order list

This commit is contained in:
Dana Jansens 2003-09-29 07:25:00 +00:00
parent d50cf297e7
commit 8feba8518b

View file

@ -1054,6 +1054,8 @@ void action_lower(union ActionData *data)
client_action_start(data); client_action_start(data);
stacking_lower(CLIENT_AS_WINDOW(data->client.any.c)); stacking_lower(CLIENT_AS_WINDOW(data->client.any.c));
client_action_end(data); client_action_end(data);
focus_order_to_bottom(data->client.any.c);
} }
void action_close(union ActionData *data) void action_close(union ActionData *data)