summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-05-26 20:23:46 +0200
committerDave Davenport <qball@gmpclient.org>2017-05-26 20:23:46 +0200
commitb73f938a826153ae6e8ebbcc9c7624f146c49d44 (patch)
tree71cf244356b5cc70d220b0def32c5e17100670c8 /include
parentc23df70aebf9d6926303b4ddb8d099a4d285949f (diff)
Set box orientation in theme.
Diffstat (limited to 'include')
-rw-r--r--include/widgets/box.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/widgets/box.h b/include/widgets/box.h
index b698e026..46d0fdb1 100644
--- a/include/widgets/box.h
+++ b/include/widgets/box.h
@@ -53,9 +53,9 @@ typedef struct _box box;
typedef enum
{
/** Pack widgets horizontal */
- BOX_HORIZONTAL,
+ BOX_HORIZONTAL = 0,
/** Pack widgets vertical */
- BOX_VERTICAL
+ BOX_VERTICAL = 1
} boxType;
/**