From: Dana Jansens Date: Mon, 15 Sep 2003 05:05:58 +0000 (+0000) Subject: no center in the first smart-place X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=eb7229603e1b873ea0f4763a5e36f8c4be9f381b;p=chaz%2Fopenbox no center in the first smart-place --- 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; + } } }