summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuho Annunen <juho.annunen@qt.io>2018-06-13 14:01:00 +0300
committerJuho Annunen <juho.annunen@qt.io>2018-06-14 05:48:05 +0000
commitff2baeb7fd583d0c81a63a65966647cdf495f6a5 (patch)
tree5e2b315de2c2407c5980f67af2a8dcc36cc3ce72
parente4ebb7da2fa883c6f8a494a336ca45ea54466b27 (diff)
Fix detail view app launch button overlay with app description
Task-number: QTBUG-68668 Change-Id: I8010fffe2f1c720c09bf04b0b25147abdf9a1310 Reviewed-by: Sami Nurmenniemi <sami.nurmenniemi@qt.io> Reviewed-by: Kimmo Ollila <kimmo.ollila@qt.io>
-rw-r--r--qml/DetailView.qml9
1 files changed, 8 insertions, 1 deletions
diff --git a/qml/DetailView.qml b/qml/DetailView.qml
index 231be57..899ae7f 100644
--- a/qml/DetailView.qml
+++ b/qml/DetailView.qml
@@ -51,6 +51,7 @@ Item {
}
Flickable {
+ id: detailFlickable
anchors.left: parent.left
anchors.right: largeImg.left
anchors.top: parent.top
@@ -59,11 +60,11 @@ Item {
anchors.rightMargin: viewSettings.pageMargin
contentHeight: descriptionHolder.height
contentWidth: width
+ clip: true
Column {
id: descriptionHolder
width: parent.width
-
spacing: viewSettings.pageMargin * 0.5
Text {
@@ -96,6 +97,12 @@ Item {
}
}
+ FlickSlider {
+ flickItem: detailFlickable
+ anchors.right: largeImg.left
+ anchors.rightMargin: viewSettings.pageMargin * 0.35
+ }
+
QtButton {
id: startButton
height: detailInformation.height * 0.14