diff --git a/interface/resources/qml/hifi/Feed.qml b/interface/resources/qml/hifi/Feed.qml index 3fd28aadb8..c1bd35f49d 100644 --- a/interface/resources/qml/hifi/Feed.qml +++ b/interface/resources/qml/hifi/Feed.qml @@ -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; } }