commit 66021e959ca27b9be90e1440592812345404a452
parent 82fdff00239196e97958aceb6139f650fd9122ee
Author: Christoph Lohmann <20h@r-36.net>
Date: Sun, 6 Jan 2013 14:56:45 +0100
Allowing xterm again to be run in tabbed.
Thanks "Oleg O. Chukaev" <oleg.chukaev@mail.ru> for reporting this!
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tabbed.c b/tabbed.c
@@ -730,7 +730,7 @@ void
maprequest(const XEvent *e) {
const XMapRequestEvent *ev = &e->xmaprequest;
- if(getclient(ev->window) > -1)
+ if(getclient(ev->window) < 0)
manage(ev->window);
}