diff options
author | Jocke <j.bygdell@gmail.com> | 2018-09-23 11:21:19 +0200 |
---|---|---|
committer | Jan Mulder <jlmulder@xs4all.nl> | 2018-09-25 15:33:11 +0200 |
commit | c4d6886daf25ed23762cf1811e9a8ae488948993 (patch) | |
tree | 76a23d5850f280bd02b815dc88e03b6b762aec82 /mobile-widgets/qml/DownloadFromDiveComputer.qml | |
parent | 0d886f2e07ba7d6b2d2317421680ede7f1a57660 (diff) | |
download | subsurface-c4d6886daf25ed23762cf1811e9a8ae488948993.tar.gz |
Mobile: let Flow object use all of the parent width
There is no point in further restricting the width of the Flow object.
Signed-off-by: Joakim Bygdell <j.bygdell@gmail.com>
Diffstat (limited to 'mobile-widgets/qml/DownloadFromDiveComputer.qml')
-rw-r--r-- | mobile-widgets/qml/DownloadFromDiveComputer.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/DownloadFromDiveComputer.qml b/mobile-widgets/qml/DownloadFromDiveComputer.qml index a2545db13..b12fb7cb2 100644 --- a/mobile-widgets/qml/DownloadFromDiveComputer.qml +++ b/mobile-widgets/qml/DownloadFromDiveComputer.qml @@ -179,7 +179,7 @@ Kirigami.Page { Layout.alignment: Qt.AlignTop Layout.topMargin: Kirigami.Units.smallSpacing * 2 spacing: Kirigami.Units.smallSpacing; - width: subsurfaceTheme.columnWidth - Kirigami.Units.gridUnit * 4 + Layout.fillWidth: true function setDC(vendor, product, device) { comboVendor.currentIndex = comboVendor.find(vendor); comboProduct.currentIndex = comboProduct.find(product); |