all repos — openbox @ 091a7f77d4f527ec70227abe15e3be4b1ee15bb4

openbox fork - make it a bit more like ryudo

nuthin
Dana Jansens danakj@orodu.net
commit

091a7f77d4f527ec70227abe15e3be4b1ee15bb4

parent

d468f85300f2ec00daa08754f8e782c75a1f8590

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

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

@@ -61,7 +61,9 @@ h = data->client->area.height;

client_try_configure(data->client, &x, &y, &w, &h, &lw, &lh, TRUE); client_find_onscreen(data->client, &x, &y, w, h, FALSE); + actions_client_move(data, TRUE); client_configure(data->client, x, y, w, h, TRUE, TRUE, FALSE); + actions_client_move(data, FALSE); } return FALSE;
M openbox/actions/moveto.copenbox/actions/moveto.c

@@ -99,7 +99,9 @@ client_try_configure(c, &x, &y, &w, &h, &lw, &lh, TRUE);

/* force it on screen if its moving to another monitor */ client_find_onscreen(c, &x, &y, w, h, mon != cmon); + actions_client_move(data, TRUE); client_configure(c, x, y, w, h, TRUE, TRUE, FALSE); + actions_client_move(data, FALSE); g_free(area); g_free(carea);