all repos — openbox @ 9c9095ffac7254da315f53a070f5686dcbc2cf8a

openbox fork - make it a bit more like ryudo

place windows in the largest area not the widest one, reverts to 3.4.2 behavior so the dock doesn't screw up placement
Dana Jansens danakj@orodu.net
commit

9c9095ffac7254da315f53a070f5686dcbc2cf8a

parent

3b4b52921adba74472904b37ec13d9c8d8686a10

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

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

@@ -316,9 +316,9 @@ Rect *r = sit->data;

if (r->width >= c->frame->area.width && r->height >= c->frame->area.height && - r->width > maxsize) + r->width * r->height > maxsize) { - maxsize = r->width; + maxsize = r->width * r->height; maxit = sit; } }