all repos — openbox @ eb7229603e1b873ea0f4763a5e36f8c4be9f381b

openbox fork - make it a bit more like ryudo

no center in the first smart-place
Dana Jansens danakj@orodu.net
commit

eb7229603e1b873ea0f4763a5e36f8c4be9f381b

parent

52e75474336365d31d93ef348f0aa1515cdb7319

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

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

@@ -162,8 +162,13 @@ if (!ret) {

if (r->width >= client->frame->area.width && r->height >= client->frame->area.height) { ret = TRUE; - *x = r->x + (r->width - client->frame->area.width) / 2; - *y = r->y + (r->height - client->frame->area.height) / 2; + if (only_focused) { + *x = r->x + (r->width - client->frame->area.width) / 2; + *y = r->y + (r->height - client->frame->area.height) / 2; + } else { + *x = r->x; + *y = r->y; + } } }