comparison mac/dw.m @ 1453:4b516ef23b62

Boxes need to default to vertical on Mac.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Wed, 14 Dec 2011 08:48:37 +0000
parents 632346743f46
children c22477fe7347
comparison
equal deleted inserted replaced
1452:dbe16031ffb4 1453:4b516ef23b62
653 self = [super init]; 653 self = [super init];
654 654
655 if (self) 655 if (self)
656 { 656 {
657 box = calloc(1, sizeof(Box)); 657 box = calloc(1, sizeof(Box));
658 box->type = DW_VERT;
658 box->vsize = box->hsize = SIZEEXPAND; 659 box->vsize = box->hsize = SIZEEXPAND;
659 box->width = box->height = 1; 660 box->width = box->height = 1;
660 } 661 }
661 return self; 662 return self;
662 } 663 }