Comment 9 for bug 703588

Revision history for this message
Florian Boucault (fboucault) wrote :

More specifically, the culprit is:

=== modified file places/RendererGrid.qml
--- places/RendererGrid.qml 2011-01-27 09:30:14 +0000
+++ places/RendererGrid.qml 2011-01-28 02:26:24 +0000
@@ -89,13 +89,9 @@
             property int compensateY: inFlickableY > 0 ? 0 : -inFlickableY

             width: flickable.width
- height: Math.min(totalHeight, flickable.height)
- onCompensateYChanged: {
- if (flickable.height > 0 && totalHeight >= flickable.height) {
- y = compensateY
- contentY = compensateY
- }
- }
+ height: flickable.height
+ y: compensateY
+ contentY: compensateY

             property int cellsPerLine: Math.floor(width/results.cellWidth)
             /* Only display one line of items when folded */