From eb7229603e1b873ea0f4763a5e36f8c4be9f381b Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Mon, 15 Sep 2003 05:05:58 +0000 Subject: [PATCH] no center in the first smart-place --- openbox/place.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/openbox/place.c b/openbox/place.c index 27df69f5..32d9fa32 100644 --- a/openbox/place.c +++ b/openbox/place.c @@ -162,8 +162,13 @@ static gboolean place_smart(ObClient *client, gint *x, gint *y, 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; + } } } -- 2.39.2