all repos — openbox @ 07df19094906256f930b614b9d16f9ea0a7211aa

openbox fork - make it a bit more like ryudo

don't move focus if the window appears or disappears
Dana Jansens danakj@orodu.net
commit

07df19094906256f930b614b9d16f9ea0a7211aa

parent

bea270cac543883d0d11f870e0285c5c3ba61266

1 files changed, 4 insertions(+), 1 deletions(-)

jump to
M openbox/actions/omnipresent.copenbox/actions/omnipresent.c

@@ -13,9 +13,12 @@

/* Always return FALSE because its not interactive */ static gboolean run_func_toggle(ObActionsData *data, gpointer options) { - if (data->client) + if (data->client) { + actions_client_move(data, TRUE); client_set_desktop(data->client, data->client->desktop == DESKTOP_ALL ? screen_desktop : DESKTOP_ALL, FALSE, TRUE); + actions_client_move(data, FALSE); + } return FALSE; }