bugfix: fix clicking on dock clients (Thanks mseed)
This commit is contained in:
parent
9719b21243
commit
3dfe5c8a9a
|
@ -332,7 +332,7 @@ Con *con_inside_floating(Con *con) {
|
||||||
if (con->floating >= FLOATING_AUTO_ON)
|
if (con->floating >= FLOATING_AUTO_ON)
|
||||||
return con->parent;
|
return con->parent;
|
||||||
|
|
||||||
if (con->type == CT_WORKSPACE)
|
if (con->type == CT_WORKSPACE || con->type == CT_OUTPUT)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
return con_inside_floating(con->parent);
|
return con_inside_floating(con->parent);
|
||||||
|
|
Loading…
Reference in New Issue