From: Michael Stapelberg Date: Mon, 21 Feb 2011 00:58:57 +0000 (+0100) Subject: bugfix: fix clicking on dock clients (Thanks mseed) X-Git-Tag: tree-pr2~37 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3dfe5c8a9a505ec7c82b8cefe3341e8ba3111584;p=i3%2Fi3 bugfix: fix clicking on dock clients (Thanks mseed) --- 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);