From 578f998f38a88ffccdabdbab4ed8d2bcf3abc2fc Mon Sep 17 00:00:00 2001 From: Marco Martin Date: Wed, 17 Jun 2015 23:00:56 -0700 Subject: [PATCH] fix the math for unlocking --- containments/homescreen/package/contents/ui/main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containments/homescreen/package/contents/ui/main.qml b/containments/homescreen/package/contents/ui/main.qml index e712fb7c..2ae0ebd1 100644 --- a/containments/homescreen/package/contents/ui/main.qml +++ b/containments/homescreen/package/contents/ui/main.qml @@ -404,7 +404,7 @@ MouseEventListener { //scrolling up } else if (verticalVelocity < 0 && contentY < -headerItem.height + root.height && - contentY < (-headerItem.height + root.height/6)) { + contentY < (-headerItem.height + root.height/6*5)) { scrollAnim.to = -headerItem.height; scrollAnim.running = true; return;