tfixed applyrules bug - dwm - [fork] customized build of dwm, the dynamic window manager
HTML git clone git://src.adamsgaard.dk/dwm
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit a82cba275981ecd85e68cc68b169c89f79fa60db
DIR parent f7c097e8029c7d0dc00db52fc04a2b8192fc2bc9
HTML Author: Anselm R Garbe <garbeam@gmail.com>
Date: Tue, 4 Mar 2008 18:13:07 +0000
fixed applyrules bug
Diffstat:
M dwm.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
DIR diff --git a/dwm.c b/dwm.c
t@@ -1002,8 +1002,6 @@ manage(Window w, XWindowAttributes *wa) {
c->tags = emallocz(TAGSZ);
c->win = w;
- applyrules(c);
-
c->x = wa->x + sx;
c->y = wa->y + sy;
c->w = wa->width;
t@@ -1038,6 +1036,8 @@ manage(Window w, XWindowAttributes *wa) {
for(t = clients; t && t->win != trans; t = t->next);
if(t)
memcpy(c->tags, t->tags, TAGSZ);
+ else
+ applyrules(c);
if(!c->isfloating)
c->isfloating = (rettrans == Success) || c->isfixed;
attach(c);