diff options
author | Christoph Lohmann <20h@r-36.net> | 2012-11-08 21:51:55 +0100 |
---|---|---|
committer | Christoph Lohmann <20h@r-36.net> | 2012-11-08 21:51:55 +0100 |
commit | 719e5a97fe795b165a2265e6bb25a9238d2211d4 (patch) | |
tree | 50f92ca34ed4e71b128e2a641b5370c6a81ffac3 | |
parent | 380c783155ea9c8af5c3c7e65bfb3b8c12c5e6ff (diff) |
Avoid flashing of surf when it is run in tabbed. Thanks Carlos Pita!
-rw-r--r-- | tabbed.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; |