From 38c10ed990f35f21268b88d9e6735cdceaed4a4c Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Mon, 3 Aug 2015 01:19:32 -0400 Subject: [PATCH] More test stuff. More TODOs. --- redo/osxaltest/main.m | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/redo/osxaltest/main.m b/redo/osxaltest/main.m index d805cd88..5de82802 100644 --- a/redo/osxaltest/main.m +++ b/redo/osxaltest/main.m @@ -53,6 +53,14 @@ BOOL firstvert = YES; [hbox tAddControl:button stretchy:NO]; [box tAddControl:hbox stretchy:NO]; + // TODO this isn't stretchy in the proper order + hbox = [[tBox alloc] tInitVertical:!firstvert]; + spinbox = [[tSpinbox alloc] init]; + [hbox tAddControl:spinbox stretchy:NO]; + spinbox = [[tSpinbox alloc] init]; + [hbox tAddControl:spinbox stretchy:YES]; + [box tAddControl:hbox stretchy:NO]; + [mainwin tShow]; }