summaryrefslogtreecommitdiff
path: root/dwm.c
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2021-09-27 15:08:56 -0500
committerzachir <zachir@librem.one>2021-09-27 15:08:56 -0500
commitbbdce6d54cc20f31a1157b6152818ab0a56ae625 (patch)
tree756d7ab07f064d74cf0c3fcbd489575b3728a1bf /dwm.c
parent60fc9232553a31061c28cf932efb5b4e0c10d80c (diff)
fix pushmdown
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c2
1 files changed, 1 insertions, 1 deletions
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);