Excessive item measure in ListWidget onDraw(), related to #347

This commit is contained in:
and3md 2017-05-21 12:00:50 +02:00
parent f37fa6970b
commit 484e3769ce
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);
}