aboutsummaryrefslogtreecommitdiffstats
path: root/calmwm.h
diff options
context:
space:
mode:
authorokan2014-09-23 13:45:48 +0000
committerokan2014-09-23 13:45:48 +0000
commitca567c515e829d14facdedce8e5ca147a21d013c (patch)
tree01bdfe1b90adc803e6c16f9516d0a0d67c5b9b71 /calmwm.h
parent017bbd97a8b753da84f01ac4b854464c5ea5b997 (diff)
downloadcwm-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.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/calmwm.h b/calmwm.h
index b030c52..6fe53ec 100644
--- a/calmwm.h
+++ b/calmwm.h
@@ -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);