shod

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

commit ed6f81e2fcd393796c95da1fc3b6e76fc7fa8814
parent cbc0b8290c7ebc8e9c84102ccd4e5b9f814bb4e0
Author: phillbush <phillbush@cock.li>
Date:   Tue, 14 Sep 2021 19:00:02 -0300

fix getnextfocused

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

diff --git a/shod.c b/shod.c @@ -1042,7 +1042,7 @@ getnextfocused(struct Monitor *mon, struct Desktop *desk) { struct Container *c; - for (c = wm.focuslist; c != NULL; c = c->next) { + for (c = wm.focuslist; c != NULL; c = c->fnext) { if (c->mon == mon && (c->issticky || c->desk == desk)) { break; }