[escher] Fix error in list view data source

This commit is contained in:
Émilie Feral
2017-12-22 16:19:43 +01:00
committed by EmilieNumworks
parent faac0d7a58
commit a8b3fbbe5e

View File

@@ -20,6 +20,9 @@ void ListViewDataSource::willDisplayCellForIndex(HighlightCell * cell, int index
}
KDCoordinate ListViewDataSource::cumulatedWidthFromIndex(int i) {
if (i == 1) {
return cellWidth();
}
return 0;
}