diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-04-07 12:07:44 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-04-07 11:22:44 -0700 |
commit | 0e49d6965cbdbf387c0fe316338805d3232c0d3d (patch) | |
tree | f7ecced3d586e551c2a8621e898c5e152b1b86a6 /mobile-widgets/qml | |
parent | 9f7e509f9afe57f81adda9649dc4f57a27faf5c7 (diff) | |
download | subsurface-0e49d6965cbdbf387c0fe316338805d3232c0d3d.tar.gz |
QML UI: fix page width calculation for dive details
Fixes #1049
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml')
-rw-r--r-- | mobile-widgets/qml/DiveDetailsEdit.qml | 3 | ||||
-rw-r--r-- | mobile-widgets/qml/DiveDetailsView.qml | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/mobile-widgets/qml/DiveDetailsEdit.qml b/mobile-widgets/qml/DiveDetailsEdit.qml index e4338b3b8..37d0c813d 100644 --- a/mobile-widgets/qml/DiveDetailsEdit.qml +++ b/mobile-widgets/qml/DiveDetailsEdit.qml @@ -57,10 +57,11 @@ Item { } height: editArea.height + width: diveDetailsPage.width - diveDetailsPage.leftPadding - diveDetailsPage.rightPadding ColumnLayout { id: editArea spacing: Kirigami.Units.smallSpacing - width: subsurfaceTheme.columnWidth - 2 * Kirigami.Units.gridUnit + width: parent.width - 2 * Kirigami.Units.gridUnit GridLayout { id: editorDetails diff --git a/mobile-widgets/qml/DiveDetailsView.qml b/mobile-widgets/qml/DiveDetailsView.qml index ef1dc5605..c10c38965 100644 --- a/mobile-widgets/qml/DiveDetailsView.qml +++ b/mobile-widgets/qml/DiveDetailsView.qml @@ -11,13 +11,13 @@ import org.kde.kirigami 1.0 as Kirigami Item { id: detailsView - property real gridWidth: subsurfaceTheme.columnWidth - 2 * Kirigami.Units.gridUnit + property real gridWidth: detailsView.width - 2 * Kirigami.Units.gridUnit property real col1Width: gridWidth * 0.23 property real col2Width: gridWidth * 0.37 property real col3Width: gridWidth * 0.20 property real col4Width: gridWidth * 0.20 - width: SubsurfaceTheme.columnWidth + width: diveDetailsPage.width - diveDetailsPage.leftPadding - diveDetailsPage.rightPadding height: mainLayout.implicitHeight + bottomLayout.implicitHeight + Kirigami.Units.iconSizes.large Rectangle { z: 99 |