TODO shuffling.

This commit is contained in:
Pietro Gagliardi 2015-06-06 16:37:13 -04:00
parent 02e9c0c4f2
commit bf9e43b185
2 changed files with 1 additions and 1 deletions

View File

@ -1,3 +1,4 @@
- figure out how to deal with dchild at all, including preferred sizes
- make OS X uiEntry width based on default in Interface Builder, not from sizeToFit - make OS X uiEntry width based on default in Interface Builder, not from sizeToFit
- update state whenever setting parent - update state whenever setting parent
- make the various onDestroy() functions take the uiControl instead - make the various onDestroy() functions take the uiControl instead

View File

@ -87,7 +87,6 @@ static void boxPreferredSize(uiControl *c, uiSizing *d, intmax_t *width, intmax_
bc = ptrArrayIndex(b->controls, struct boxControl *, i); bc = ptrArrayIndex(b->controls, struct boxControl *, i);
if (!uiControlContainerVisible(bc->c)) if (!uiControlContainerVisible(bc->c))
continue; continue;
// TODO dchild
uiControlPreferredSize(bc->c, d, &preferredWidth, &preferredHeight); uiControlPreferredSize(bc->c, d, &preferredWidth, &preferredHeight);
if (bc->stretchy) { if (bc->stretchy) {
nStretchy++; nStretchy++;