cr feedback -- really good feedback in fact

This commit is contained in:
David Kelly 2017-05-11 17:02:37 -07:00
parent ae5f9e4fb1
commit a9716313be

View file

@ -246,7 +246,7 @@ Column {
id: anim;
target: scroll;
property: "contentX";
duration: 500;
duration: 250;
}
function scrollToIndex(index) {
anim.running = false;
@ -256,6 +256,7 @@ Column {
destPos = scroll.contentX;
anim.from = pos;
anim.to = destPos;
scroll.currentIndex = index;
anim.running = true;
}
}