simplify scroll snapping

This commit is contained in:
Marco Martin 2015-06-23 10:01:27 -07:00
parent f5f78c1baa
commit 44bafbed70
2 changed files with 1 additions and 53 deletions

View file

@ -156,48 +156,6 @@ Item {
summary: "July: Hello?"
actions: []
}
ListElement {
source: "im2Source"
appIcon: "im-google"
appName: "Message"
summary: "July: Hello?"
actions: []
}
ListElement {
source: "im2Source"
appIcon: "im-google"
appName: "Message"
summary: "July: Hello?"
actions: []
}
ListElement {
source: "im2Source"
appIcon: "im-google"
appName: "Message"
summary: "July: Hello?"
actions: []
}
ListElement {
source: "im2Source"
appIcon: "im-google"
appName: "Message"
summary: "July: Hello?"
actions: []
}
ListElement {
source: "im2Source"
appIcon: "im-google"
appName: "Message"
summary: "July: Hello?"
actions: []
}
ListElement {
source: "im2Source"
appIcon: "im-google"
appName: "Message"
summary: "July: Hello?"
actions: []
}
}
ListView {

View file

@ -515,10 +515,7 @@ Item {
snapMode: GridView.SnapToRow
onFlickingChanged: {
if (!draggingVertically && contentY < -headerItem.height + root.height) {
scrollAnim.to = Math.round(contentY/root.height) * root.height
scrollAnim.running = true;
}
draggingVerticallyChanged(false);
}
onDraggingVerticallyChanged: {
if (draggingVertically) {
@ -540,13 +537,6 @@ Item {
scrollAnim.running = true;
return;
}
//(1000/scrollAnim.duration) is the length scrolled at the current speed in the duration of the animation
if (contentY < -headerItem.height + root.height) {
scrollAnim.to = Math.round((contentY + (verticalVelocity / (1000/scrollAnim.duration))) / root.height) * root.height
scrollAnim.running = true;
}
}
NumberAnimation {
id: scrollAnim