summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomasz Sterna <tomek@xiaoka.com>2015-06-24 19:47:06 +0200
committerTomasz Sterna <tomek@xiaoka.com>2015-06-24 19:47:06 +0200
commit0c54accf96ae50ca80e649651f4c30a36647b643 (patch)
tree824a409d87d9200436c85fea7aaaf357bde8938d
parente44c21c7e98b7046dec430205a5e718ac68bbd5d (diff)
parent24911cffabb579260d5891a7fdea4a79a9258c4a (diff)
Merge pull request #73 from helicalgear/appstorepage
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;
}
}
- }
}