shod

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

commit b767a9785ec4e4483866e384c58aaf023eb17057
parent a3e002ed01b2915974d9fd82fa6411fa5f914b67
Author: seninha <lucas@seninha.org>
Date:   Thu,  1 Sep 2022 09:42:45 -0300

fix missing assignment to .obj.type in managebar()

Diffstat:
Mshod.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/shod.c b/shod.c @@ -5240,6 +5240,7 @@ managebar(Window win) bar = emalloc(sizeof(*bar)); bar->obj.win = win; + bar->obj.type = TYPE_DOCK; TAILQ_INSERT_HEAD(&wm.barq, (struct Object *)bar, entry); XRestackWindows(dpy, wins, 2); XMapWindow(dpy, win);