# HG changeset patch # User arg@mig29 # Date 1161867945 -7200 # Node ID 722cffee37705d54abcb62d4fde7ba4856982a98 # Parent 21a924818b61fcebf2227f84034d5bd72a3953cb apply small fix to prevent apps like mplayer wandering when toggling fullscreen diff -r 21a924818b61 -r 722cffee3770 client.c --- a/client.c Thu Oct 26 12:22:26 2006 +0200 +++ b/client.c Thu Oct 26 15:05:45 2006 +0200 @@ -202,8 +202,8 @@ 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;