all repos — openbox @ 0a9a005891392f722082f648f49706616c62fd1a

openbox fork - make it a bit more like ryudo

fix move to center on xinerama
Dana Jansens danakj@orodu.net
commit

0a9a005891392f722082f648f49706616c62fd1a

parent

4669203fd8f7dc2ac4aef40ba1a2ce4be404b00b

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

jump to
M openbox/action.copenbox/action.c

@@ -1462,8 +1462,8 @@ ObClient *c = data->client.any.c;

Rect *area; area = screen_area(c->desktop, client_monitor(c), NULL); client_action_start(data); - client_move(c, area->width / 2 - c->area.width / 2, - area->height / 2 - c->area.height / 2); + client_move(c, area->x + area->width / 2 - c->area.width / 2, + area->y + area->height / 2 - c->area.height / 2); client_action_end(data, FALSE); g_free(area); }