Introduction
Introduction Statistics Contact Development Disclaimer Help
Avoid flashing of surf when it is run in tabbed. Thanks Carlos Pita! - tabbed -…
git clone git://git.suckless.org/tabbed
Log
Files
Refs
README
LICENSE
---
commit 719e5a97fe795b165a2265e6bb25a9238d2211d4
parent 380c783155ea9c8af5c3c7e65bfb3b8c12c5e6ff
Author: Christoph Lohmann <[email protected]>
Date: Thu, 8 Nov 2012 21:51:55 +0100
Avoid flashing of surf when it is run in tabbed. Thanks Carlos Pita!
Diffstat:
M tabbed.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
---
diff --git 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;
You are viewing proxied material from suckless.org. 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.