# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1323852517 0 # Node ID 4b516ef23b62908230f9be93ac0fda9b0f810c63 # Parent dbe16031ffb41d015565d38b68195922e48872ac Boxes need to default to vertical on Mac. diff -r dbe16031ffb4 -r 4b516ef23b62 mac/dw.m --- a/mac/dw.m Wed Dec 14 08:22:54 2011 +0000 +++ b/mac/dw.m Wed Dec 14 08:48:37 2011 +0000 @@ -655,6 +655,7 @@ if (self) { box = calloc(1, sizeof(Box)); + box->type = DW_VERT; box->vsize = box->hsize = SIZEEXPAND; box->width = box->height = 1; }