Introduction
Introduction Statistics Contact Development Disclaimer Help
tfixed the issue observed by various people, that clients appeared on empty tag…
git clone git://src.adamsgaard.dk/dwm
Log
Files
Refs
README
LICENSE
---
commit e40448fd6340620354d82d801d975eaa53dbd924
parent 10bc0ce912eb99fec49d954c80d92e04429ed0ee
Author: Anselm R. Garbe <[email protected]>
Date: Thu, 16 Aug 2007 18:30:25 +0200
fixed the issue observed by various people, that clients appeared on empty tags
Diffstat:
M client.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
---
diff --git a/client.c b/client.c
t@@ -227,9 +227,7 @@ manage(Window w, XWindowAttributes *wa) {
attach(c);
attachstack(c);
XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h); /* some window…
- setclientstate(c, IconicState);
- c->isbanned = True;
- focus(c);
+ ban(c);
arrange();
}
t@@ -325,7 +323,8 @@ unmanage(Client *c, long state) {
XSync(dpy, False);
XSetErrorHandler(xerror);
XUngrabServer(dpy);
- arrange();
+ if(state != NormalState)
+ arrange();
}
void
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.