diff options
author | okan | 2014-09-23 13:45:48 +0000 |
---|---|---|
committer | okan | 2014-09-23 13:45:48 +0000 |
commit | ca567c515e829d14facdedce8e5ca147a21d013c (patch) | |
tree | 01bdfe1b90adc803e6c16f9516d0a0d67c5b9b71 /calmwm.h | |
parent | 017bbd97a8b753da84f01ac4b854464c5ea5b997 (diff) | |
download | cwm-ca567c515e829d14facdedce8e5ca147a21d013c.tar.gz |
Move stuff that doesn't belong in group_init; while here, explicitly
initialize hideall and cycling.
Diffstat (limited to 'calmwm.h')
-rw-r--r-- | calmwm.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: calmwm.h,v 1.279 2014/09/17 18:41:44 okan Exp $ + * $OpenBSD: calmwm.h,v 1.280 2014/09/23 13:45:48 okan Exp $ */ #ifndef _CALMWM_H_ @@ -229,19 +229,19 @@ struct screen_ctx { Window rootwin; Window menuwin; int cycling; + int hideall; int snapdist; struct geom view; /* viewable area */ struct geom work; /* workable area, gap-applied */ struct gap gap; struct client_ctx_q clientq; struct region_ctx_q regionq; - XftColor xftcolor[CWM_COLOR_NITEMS]; - XftDraw *xftdraw; - XftFont *xftfont; #define CALMWM_NGROUPS 10 struct group_ctx_q groupq; - int group_hideall; struct group_ctx *group_active; + XftColor xftcolor[CWM_COLOR_NITEMS]; + XftDraw *xftdraw; + XftFont *xftfont; }; TAILQ_HEAD(screen_ctx_q, screen_ctx); |