bugfix: fix clicking on dock clients (Thanks mseed)

next
Michael Stapelberg 2011-02-21 01:58:57 +01:00
parent 9719b21243
commit 3dfe5c8a9a
1 changed files with 1 additions and 1 deletions

View File

@ -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);