From 3cf958e658ad30d0ddd3cb5bac884424955d8340 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Mon, 17 Feb 2020 10:35:57 -0800 Subject: mobile/profile: add invisible rectangle around QMLProfile This way we can clip the profile to it's designated size. Signed-off-by: Dirk Hohndel --- mobile-widgets/qml/DiveDetailsView.qml | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) (limited to 'mobile-widgets/qml/DiveDetailsView.qml') diff --git a/mobile-widgets/qml/DiveDetailsView.qml b/mobile-widgets/qml/DiveDetailsView.qml index fbbf7e7c7..a7fbf4412 100644 --- a/mobile-widgets/qml/DiveDetailsView.qml +++ b/mobile-widgets/qml/DiveDetailsView.qml @@ -218,20 +218,24 @@ Item { rowSpacing: Kirigami.Units.smallSpacing * 2 columnSpacing: Kirigami.Units.smallSpacing - QMLProfile { - id: qmlProfile - visible: !noDive + Rectangle { Layout.fillWidth: true Layout.preferredHeight: Layout.minimumHeight Layout.minimumHeight: width * 0.75 Layout.columnSpan: 3 - clip: false - Rectangle { - color: "transparent" - opacity: 0.6 - border.width: 1 - border.color: subsurfaceTheme.primaryColor + clip: true + + QMLProfile { + id: qmlProfile + visible: !noDive anchors.fill: parent + Rectangle { + color: "transparent" + opacity: 0.6 + border.width: 1 + border.color: subsurfaceTheme.primaryColor + anchors.fill: parent + } } } Controls.Label { -- cgit v1.2.3-70-g09d2