From d2f7ad9a2480c2810dee5def13cbdee36bd71e5e Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Tue, 24 Apr 2007 15:29:42 +0000 Subject: [PATCH] place randomly inside the area available. if its too big, put the top left corner inside still --- openbox/place.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openbox/place.c b/openbox/place.c index 5614ecf3..74aa7605 100644 --- a/openbox/place.c +++ b/openbox/place.c @@ -126,9 +126,9 @@ static gboolean place_random(ObClient *client, gint *x, gint *y) b = areas[i]->y + areas[i]->height - client->frame->area.height; if (r > l) *x = g_random_int_range(l, r + 1); - else *x = 0; + else *x = areas[i]->x; if (b > t) *y = g_random_int_range(t, b + 1); - else *y = 0; + else *y = areas[i]->y; g_free(areas); -- 2.39.2