commit 3f70bbb5c47548579653e5b6af3678ea55455844
parent 3b05eadeaf5e2de4caf127cfa07642342cccddbc
Author: Devin J. Pohly <djpohly@gmail.com>
Date: Sat, 14 Aug 2021 07:50:40 -0400
Merge pull request #130 from drdonahue/printstatus-fix
Fix excessive printstatus() calls when dmenu is up
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dwl.c b/dwl.c
@@ -1083,7 +1083,6 @@ focusclient(Client *c, int lift)
selmon = c->mon;
c->isurgent = 0;
}
- printstatus();
/* Deactivate old client if focus is changing */
if (old && (!c || client_surface(c) != old)) {
@@ -1106,6 +1105,8 @@ focusclient(Client *c, int lift)
}
}
+ printstatus();
+
if (!c) {
/* With no client, all we have left is to clear focus */
wlr_seat_keyboard_notify_clear_focus(seat);