diff --git a/redo/osxaltest/box.m b/redo/osxaltest/box.m index d1f1b174..3c4a061b 100644 --- a/redo/osxaltest/box.m +++ b/redo/osxaltest/box.m @@ -136,6 +136,7 @@ // TODO do not release constraint; it's autoreleased? // next make the views span the full other dimension + // TODO make all of these the same width/height for (i = 0; i < n; i++) { if (self->vertical) constraint = [NSMutableString stringWithString:@"H:|["]; diff --git a/redo/osxaltest/main.m b/redo/osxaltest/main.m index cb8b9d20..29e84edc 100644 --- a/redo/osxaltest/main.m +++ b/redo/osxaltest/main.m @@ -44,6 +44,7 @@ BOOL firstvert = NO; [hbox tAddControl:button stretchy:YES]; [box tAddControl:hbox stretchy:NO]; + // TODO in vertical mode the three non-stretchy buttons are smaller than they should be hbox = [[tBox alloc] tInitVertical:!firstvert spaced:spaced]; button = [[tButton alloc] tInitWithText:@"Button"]; [hbox tAddControl:button stretchy:YES];