aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Lohmann <20h@r-36.net>2013-01-06 14:56:45 +0100
committerChristoph Lohmann <20h@r-36.net>2013-01-06 14:56:45 +0100
commit66021e959ca27b9be90e1440592812345404a452 (patch)
tree1a355638fe6c7b4ce512fc2531aeb5e04181779a
parent82fdff00239196e97958aceb6139f650fd9122ee (diff)
Allowing xterm again to be run in tabbed.
Thanks "Oleg O. Chukaev" <oleg.chukaev@mail.ru> for reporting this!
-rw-r--r--tabbed.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tabbed.c b/tabbed.c
index b08d4f4..a4127db 100644
--- 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);
}