apply small fix to prevent apps like mplayer wandering when toggling fullscreen
arg@mig29 unknown
Thu, 26 Oct 2006 15:05:45 +0200
1 files changed,
2 insertions(+),
2 deletions(-)
jump to
M
client.c
→
client.c
@@ -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;