summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorR.Kake <helicalgear@gmail.com>2015-06-23 19:43:01 +0900
committerR.Kake <helicalgear@gmail.com>2015-06-23 19:43:01 +0900
commit24911cffabb579260d5891a7fdea4a79a9258c4a (patch)
tree625a021b1a8816b5ee527569b2bafcc2e3132737
parent0366d22c53a9b2f78bb500f75644fe9d8c94b01a (diff)
To be smooth the Scroll of PebbleStoreView
-rw-r--r--app/qml/pages/AppStorePage.qml9
1 files changed, 5 insertions, 4 deletions
diff --git a/app/qml/pages/AppStorePage.qml b/app/qml/pages/AppStorePage.qml
index 82a8542..4993b1b 100644
--- a/app/qml/pages/AppStorePage.qml
+++ b/app/qml/pages/AppStorePage.qml
@@ -17,8 +17,9 @@ Page {
SilicaFlickable {
id: flickable
- anchors.fill: parent
- contentHeight: column.height + webview.height
+ anchors.top: parent.top
+ width: parent.width
+ height: column.height
PullDownMenu {
visible: webview.loggedin;
@@ -116,6 +117,7 @@ Page {
}
}
}
+ }
RemorsePopup {
id: remorse
@@ -128,7 +130,7 @@ Page {
height: page.height - column.height
anchors {
- top: column.bottom
+ top: flickable.bottom
}
accessToken: settings.storeAccessToken
@@ -145,7 +147,6 @@ Page {
pageHeadTitle.title = title;
}
}
- }
}