added general centralization rule for new clients (works around various borken apps)
This commit is contained in:
parent
4cc0551948
commit
a20b10d01f
11
client.c
11
client.c
@ -187,7 +187,7 @@ killclient(Arg *arg)
|
||||
void
|
||||
manage(Window w, XWindowAttributes *wa)
|
||||
{
|
||||
Client *c;
|
||||
Client *c, *tc;
|
||||
Window trans;
|
||||
XSetWindowAttributes twa;
|
||||
|
||||
@ -258,6 +258,15 @@ manage(Window w, XWindowAttributes *wa)
|
||||
c->maxw == c->minw && c->maxh == c->minh);
|
||||
settitle(c);
|
||||
|
||||
if(trans && (tc = getclient(trans))) {
|
||||
c->x = (tc->x + tc->w / 2) - (c->w / 2);
|
||||
c->y = (tc->y + tc->h / 2) - (c->h / 2);
|
||||
}
|
||||
else {
|
||||
c->x = (sw / 2) - (c->w / 2);
|
||||
c->y = ((sh - bh) / 2) - (c->h / 2) + bh;
|
||||
}
|
||||
|
||||
if(isvisible(c))
|
||||
sel = c;
|
||||
arrange(NULL);
|
||||
|
Loading…
Reference in New Issue
Block a user