From 3ebfea0d06695187a1e0d2acb40959fa03f6e280 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Thu, 8 Jun 2017 22:32:54 +0200 Subject: Reset the flickable speed to it's original It's still not very usable, but we'll have to find a solution that is applicable everywhere and perhaps it is just a hardware problem. Increasing the deceleration just makes scrolling very slow, so that's no solution either. --- framework/qml/ConversationView.qml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'framework') diff --git a/framework/qml/ConversationView.qml b/framework/qml/ConversationView.qml index 453ee3a0..d5b64ea4 100644 --- a/framework/qml/ConversationView.qml +++ b/framework/qml/ConversationView.qml @@ -62,6 +62,9 @@ Rectangle { ListView { id: listView + + anchors.fill: parent + function setCurrentIndex() { /** @@ -84,13 +87,6 @@ Rectangle { } } - anchors { - top: parent.top - left: parent.left - right: parent.right - bottom: parent.bottom - } - clip: true model: Kube.MailListModel { @@ -116,7 +112,7 @@ Rectangle { boundsBehavior: Flickable.StopAtBounds //default is 1500, which is not usable with a mouse - flickDeceleration: 10000 + flickDeceleration: 1500 //Optimize for view quality pixelAligned: true -- cgit v1.2.3