From 3dfe5c8a9a505ec7c82b8cefe3341e8ba3111584 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Mon, 21 Feb 2011 01:58:57 +0100 Subject: [PATCH] bugfix: fix clicking on dock clients (Thanks mseed) --- src/con.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/con.c b/src/con.c index 31affbbc..07fb0c65 100644 --- a/src/con.c +++ b/src/con.c @@ -332,7 +332,7 @@ Con *con_inside_floating(Con *con) { if (con->floating >= FLOATING_AUTO_ON) return con->parent; - if (con->type == CT_WORKSPACE) + if (con->type == CT_WORKSPACE || con->type == CT_OUTPUT) return NULL; return con_inside_floating(con->parent);