temporal fix for the scroll issue in GridView

This commit is contained in:
Luis Ángel San Martín 2015-05-20 16:36:49 +02:00
parent bc71a654e7
commit 780ce7c2b2

View File

@ -339,6 +339,12 @@ Rectangle {
currentIndex: 0
cacheBuffer: 0
footer: Rectangle { //fix for the scroll issue, TODO find what causes the issue (some times the bottoms cells are hidden for the toolbar, no full scroll)
height : 25
width : parent.width
color : backgroundColor
}
move: Transition {
NumberAnimation { properties: "x,y"; duration: 250 }
}