tadded some flicker prevention - dwm - [fork] customized build of dwm, the dynamic window manager
(HTM) git clone git://src.adamsgaard.dk/dwm
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 666fae97e67810089ffbddd019d655bc4f9f7838
(DIR) parent 823fb1118a30ae18a41650cf650df6b67861130b
(HTM) Author: Anselm R.Garbe <arg@10ksloc.org>
Date: Mon, 14 Aug 2006 16:37:55 +0200
added some flicker prevention
Diffstat:
M client.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
---
(DIR) diff --git a/client.c b/client.c
t@@ -262,11 +262,13 @@ manage(Window w, XWindowAttributes *wa)
c->maxw == c->minw && c->maxh == c->minh);
settitle(c);
+ if(isvisible(c))
+ sel = c;
+ arrange(NULL);
XMapWindow(dpy, c->win);
XMapWindow(dpy, c->title);
if(isvisible(c))
focus(c);
- arrange(NULL);
}
void