projects
/
suckless
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
724f35a
)
apply small fix to prevent apps like mplayer wandering when toggling fullscreen
author
arg@mig29
<unknown>
Thu, 26 Oct 2006 13:05:45 +0000
(15:05 +0200)
committer
arg@mig29
<unknown>
Thu, 26 Oct 2006 13:05:45 +0000
(15:05 +0200)
client.c
patch
|
blob
|
history
diff --git
a/client.c
b/client.c
index c65a42b33a106ce60a77e5323efaa20b7a697953..49d40d5c52af283e2332245ee98d700a6009bb99 100644
(file)
--- a/
client.c
+++ b/
client.c
@@
-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;