all repos — openbox @ 52d751ecd67bc063df51c815aa6980a55e2f4eb7

openbox fork - make it a bit more like ryudo

best fit only one direction
Dana Jansens danakj@orodu.net
commit

52d751ecd67bc063df51c815aa6980a55e2f4eb7

parent

eb7229603e1b873ea0f4763a5e36f8c4be9f381b

1 files changed, 5 insertions(+), 3 deletions(-)

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

@@ -122,11 +122,13 @@ g_slist_free(list);

return result; } -static gint area_cmp(gconstpointer p1, gconstpointer p2) +static gint area_cmp(gconstpointer p1, gconstpointer p2, gpointer data) { + Rect *carea = data; const Rect *a1 = p1, *a2 = p2; - return a1->width * a1->height - a2->width * a2->height; + return MIN((a1->width - carea->width), (a1->height - carea->height)) - + MIN((a2->width - carea->width), (a2->height - carea->height)); } static gboolean place_smart(ObClient *client, gint *x, gint *y,

@@ -153,7 +155,7 @@ break;

} } - spaces = g_slist_sort(spaces, area_cmp); + spaces = g_slist_sort_with_data(spaces, area_cmp, &client->frame->area); for (sit = spaces; sit; sit = g_slist_next(sit)) { Rect *r = sit->data;