apply small fix to prevent apps like mplayer wandering when toggling fullscreen

This commit is contained in:
arg@mig29 2006-10-26 15:05:45 +02:00
parent 724f35a664
commit 040d0f48a0
1 changed files with 2 additions and 2 deletions

View File

@ -202,8 +202,8 @@ manage(Window w, XWindowAttributes *wa) {
c = emallocz(sizeof(Client));
c->tags = emallocz(ntags * sizeof(Bool));
c->win = w;
c->x = c->tx = wa->x;
c->y = c->ty = wa->y;
c->x = c->tx = wa->x; c->x -= BORDERPX;
c->y = c->ty = wa->y; c->y -= BORDERPX;
c->w = c->tw = wa->width;
c->h = wa->height;
c->th = bh;