diff --git a/escher/src/list_view_data_source.cpp b/escher/src/list_view_data_source.cpp index e1992fd34..e5e078076 100644 --- a/escher/src/list_view_data_source.cpp +++ b/escher/src/list_view_data_source.cpp @@ -20,6 +20,9 @@ void ListViewDataSource::willDisplayCellForIndex(HighlightCell * cell, int index } KDCoordinate ListViewDataSource::cumulatedWidthFromIndex(int i) { + if (i == 1) { + return cellWidth(); + } return 0; }