no center in the first smart-place
This commit is contained in:
parent
52e7547433
commit
eb7229603e
1 changed files with 7 additions and 2 deletions
|
@ -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;
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue