From cb65869d7a01eb093e8a95caea5a6e21b6689f42 Mon Sep 17 00:00:00 2001 From: okan Date: Tue, 23 Sep 2014 13:45:48 +0000 Subject: Move stuff that doesn't belong in group_init; while here, explicitly initialize hideall and cycling. --- group.c | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) (limited to 'group.c') diff --git a/group.c b/group.c index ce5a504..7d05861 100644 --- a/group.c +++ b/group.c @@ -119,9 +119,6 @@ group_init(struct screen_ctx *sc) struct group_ctx *gc; int i; - TAILQ_INIT(&sc->groupq); - sc->group_hideall = 0; - for (i = 0; i < CALMWM_NGROUPS; i++) { gc = xcalloc(1, sizeof(*gc)); gc->sc = sc; @@ -131,12 +128,6 @@ group_init(struct screen_ctx *sc) TAILQ_INSERT_TAIL(&sc->groupq, gc, entry); } - xu_ewmh_net_desktop_names(sc); - xu_ewmh_net_wm_desktop_viewport(sc); - xu_ewmh_net_wm_number_of_desktops(sc); - xu_ewmh_net_showing_desktop(sc); - xu_ewmh_net_virtual_roots(sc); - group_setactive(sc, 1); } @@ -315,12 +306,12 @@ group_alltoggle(struct screen_ctx *sc) struct group_ctx *gc; TAILQ_FOREACH(gc, &sc->groupq, entry) { - if (sc->group_hideall) + if (sc->hideall) group_show(gc); else group_hide(gc); } - sc->group_hideall = !sc->group_hideall; + sc->hideall = !sc->hideall; } void -- cgit 1.4.1