summary refs log tree commit diff
path: root/calmwm.h
diff options
context:
space:
mode:
authorokan <okan>2014-09-23 13:45:48 +0000
committerokan <okan>2014-09-23 13:45:48 +0000
commitcb65869d7a01eb093e8a95caea5a6e21b6689f42 (patch)
treef04ae062e021208392acf27e282bc179f9531f0f /calmwm.h
parentcbc7f760748f0519c70fa6c6d3c40a05810b7f9c (diff)
downloadcwm-cb65869d7a01eb093e8a95caea5a6e21b6689f42.tar.gz
cwm-cb65869d7a01eb093e8a95caea5a6e21b6689f42.tar.xz
cwm-cb65869d7a01eb093e8a95caea5a6e21b6689f42.zip
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.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/calmwm.h b/calmwm.h
index dd8a782..03d7a85 100644
--- a/calmwm.h
+++ b/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);