aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Lohmann <20h@r-36.net>2012-11-08 21:51:55 +0100
committerChristoph Lohmann <20h@r-36.net>2012-11-08 21:51:55 +0100
commit719e5a97fe795b165a2265e6bb25a9238d2211d4 (patch)
tree50f92ca34ed4e71b128e2a641b5370c6a81ffac3
parent380c783155ea9c8af5c3c7e65bfb3b8c12c5e6ff (diff)
Avoid flashing of surf when it is run in tabbed. Thanks Carlos Pita!
-rw-r--r--tabbed.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tabbed.c b/tabbed.c
index c365e93..7a15e82 100644
--- a/tabbed.c
+++ b/tabbed.c
@@ -641,7 +641,8 @@ manage(Window w) {
updatetitle(c);
drawbar();
- XMapRaised(dpy, w);
+ XLowerWindow(dpy, w);
+ XMapWindow(dpy, w);
e.xclient.window = w;
e.xclient.type = ClientMessage;