diff options
| author | Tomasz Sterna <tomek@xiaoka.com> | 2015-06-24 19:47:06 +0200 |
|---|---|---|
| committer | Tomasz Sterna <tomek@xiaoka.com> | 2015-06-24 19:47:06 +0200 |
| commit | 0c54accf96ae50ca80e649651f4c30a36647b643 (patch) | |
| tree | 824a409d87d9200436c85fea7aaaf357bde8938d | |
| parent | e44c21c7e98b7046dec430205a5e718ac68bbd5d (diff) | |
| parent | 24911cffabb579260d5891a7fdea4a79a9258c4a (diff) | |
Merge pull request #73 from helicalgear/appstorepage
To be smooth the Scroll of PebbleStoreView
| -rw-r--r-- | app/qml/pages/AppStorePage.qml | 9 |
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; } } - } } |
