Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix storing invalid item height values in
ItemList
The height of the last N items is incorrectly overwritten with the max height of first row (N = number of columns). This happen in the first iteration of the while loop. Moving this code inside if (all_fit) makes sure the last rows height is only updated at the end when max height (max_h) is calculated for the last row.
- Loading branch information