From bbdce6d54cc20f31a1157b6152818ab0a56ae625 Mon Sep 17 00:00:00 2001 From: zachir Date: Mon, 27 Sep 2021 15:08:56 -0500 Subject: fix pushmdown --- dwm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dwm.c') diff --git a/dwm.c b/dwm.c index 49b0aa3..7882132 100644 --- a/dwm.c +++ b/dwm.c @@ -1668,7 +1668,7 @@ void pushmdown(const Arg *arg) { Client *sel = selmon->sel, *c; - if(!sel || sel->isfloating || sel == nexttiled(selmon->clients)) + if(!sel || sel->isfloating) return; if((c = nexttiled(sel->next))) { detach(sel); -- cgit v1.2.3