dwm

git clone git://mattcarlson.org/repos/dwm.git
Log | Files | Refs

commit 7f8d3bd513cee7ba0a733423bed350bcaf636cce
parent 1f0ea775fa78e49a3a62a17f26e7484cf62bf3b0
Author: Matthew Carlson <matt@mcarlson.xyz>
Date:   Tue, 24 Aug 2021 00:27:11 -0400

clicking on space where title used to be now does nothing

Diffstat:
Mdwm.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dwm.c b/dwm.c @@ -603,7 +603,7 @@ buttonpress(XEvent *e) } } } else - click = ClkStatusText; + click = NULL; } else if ((c = wintoclient(ev->window))) { focus(c); restack(selmon);