Merge pull request #621 from nguyenhuy/table_cell_node_min_width

New min constrained width for cell nodes in table view
This commit is contained in:
appleguy
2015-08-28 23:47:22 -07:00
2 changed files with 3 additions and 1 deletions

View File

@@ -791,7 +791,8 @@ void ASPerformBlockWithoutAnimation(BOOL withoutAnimation, void (^block)()) {
}
// Default size range
return ASSizeRangeMake(CGSizeZero, CGSizeMake(_maxWidthForNodesConstrainedSize, FLT_MAX));
return ASSizeRangeMake(CGSizeMake(_maxWidthForNodesConstrainedSize, 0),
CGSizeMake(_maxWidthForNodesConstrainedSize, FLT_MAX));
}
- (void)dataControllerLockDataSource