Merge pull request #351 from and3md/listwidget_measure_fix

Excessive item measure in ListWidget onDraw() - maybe related to #347
This commit is contained in:
Vadim Lopatin 2017-05-22 10:29:23 +03:00 committed by GitHub
commit 34172b8a31
1 changed files with 0 additions and 1 deletions

View File

@ -1188,7 +1188,6 @@ class ListWidget : WidgetGroup, OnScrollHandler, OnAdapterChangeHandler {
Widget w = itemWidget(i);
if (w is null || w.visibility != Visibility.Visible)
continue;
w.measure(itemrc.width, itemrc.height);
w.layout(itemrc);
w.onDraw(buf);
}