shod

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 26ade5b1e1238233803aca6e5777c5c682ea5f49
parent 406f38721e993556ef8bf4024ac9b8e89072c09b
Author: Lucas de Sena <lucas@seninha.org>
Date:   Sat,  8 Jul 2023 07:22:19 -0300

check wm.focused

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

diff --git a/xcontainer.c b/xcontainer.c @@ -1749,7 +1749,7 @@ tabupdateurgency(struct Tab *t, int isurgent) int prev; prev = t->isurgent; - if (t == wm.focused->selcol->selrow->seltab) + if (wm.focused != NULL && t == wm.focused->selcol->selrow->seltab) t->isurgent = False; else t->isurgent = isurgent;