diff options
author | zachir <zachir@librem.one> | 2021-09-27 15:08:56 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2021-09-27 15:08:56 -0500 |
commit | bbdce6d54cc20f31a1157b6152818ab0a56ae625 (patch) | |
tree | 756d7ab07f064d74cf0c3fcbd489575b3728a1bf /dwm.c | |
parent | 60fc9232553a31061c28cf932efb5b4e0c10d80c (diff) |
fix pushmdown
Diffstat (limited to 'dwm.c')
-rw-r--r-- | dwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |