From af30c7a7351a7b02d1e3417b5f091c4c6a97e93f Mon Sep 17 00:00:00 2001 From: bakkeby Date: Tue, 23 Jun 2020 12:11:01 +0200 Subject: [PATCH] floatpos: allow controls in floating mode --- patch/floatpos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patch/floatpos.c b/patch/floatpos.c index 33f5bb6..1cdfcbb 100644 --- a/patch/floatpos.c +++ b/patch/floatpos.c @@ -3,7 +3,7 @@ floatpos(const Arg *arg) { Client *c = selmon->sel; - if (!c || !c->isfloating) + if (!c || (selmon->lt[selmon->sellt]->arrange && !c->isfloating)) return; setfloatpos(c, (char *)arg->v);