Finished the migration.

This commit is contained in:
Pietro Gagliardi 2016-06-13 22:42:11 -04:00
parent fa4542f217
commit 207340f16f
3 changed files with 3 additions and 2 deletions

View File

@ -18,6 +18,9 @@ This README is being written.<br>
*Note that today's entry may be updated later today.*
* **13 June 2016**
* `intmax_t` and `uintmax_t` are no longer used in libui at all; now we only have `int`. This should make things much easier for bindings. `int` should be at least 32 bits wide; this should be sufficient for all but the most extreme cases.
* **12 June 2016**
* Added `uiGrid`, a new container control that arranges controls in rows and columns, with stretchy ("expanding") rows, stretchy ("expanding") columns, cells that span rows and columns, and cells whose content is aligned in either direction rather than just filling. It's quite powerful, is it? =P

View File

@ -212,7 +212,6 @@ struct uiForm {
CGFloat padding;
NSView *prev, *prevlabel;
NSLayoutConstraint *c;
NSLayoutRelation relation;
[self removeOurConstraints];
if ([self->children count] == 0)

View File

@ -421,7 +421,6 @@ struct uiGrid {
- (void)append:(gridChild *)gc
{
NSLayoutPriority priority;
BOOL update;
int oldn;