Browse Source

removed unneeded offset recalculation, thanks Jukka, let's see if this breaks some other client

master
garbeam@gmail.com 13 years ago
parent
commit
b3c5f5435a
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      dwm.c

+ 2
- 2
dwm.c View File

@ -1112,8 +1112,8 @@ manage(Window w, XWindowAttributes *wa) {
applyrules(c);
}
/* geometry */
c->x = c->oldx = wa->x + c->mon->wx;
c->y = c->oldy = wa->y + c->mon->wy;
c->x = c->oldx = wa->x;
c->y = c->oldy = wa->y;
c->w = c->oldw = wa->width;
c->h = c->oldh = wa->height;
c->oldbw = wa->border_width;


Loading…
Cancel
Save