diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2019-08-11 13:42:21 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-09-11 21:50:41 +0100 |
commit | 00e673230ac1e246bd206b1b2bd952185983e27c (patch) | |
tree | dec80c19e19cabeb60db019237ec2cce3f34298d /mobile-widgets/qml | |
parent | 6f9c8ea1b79ebae9d95590424df1b71bf9ebd6d9 (diff) | |
download | subsurface-00e673230ac1e246bd206b1b2bd952185983e27c.tar.gz |
Mobile: reserve space for the hamburger menu on Download page
Having a label with no width that can expand wasn't really a great way
to do so.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/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 229b5322d..b80412673 100644 --- a/mobile-widgets/qml/DownloadFromDiveComputer.qml +++ b/mobile-widgets/qml/DownloadFromDiveComputer.qml @@ -379,7 +379,7 @@ Kirigami.Page { id: bottomButtons Controls.Label { text: "" // Spacer on the left for hamburger menu - Layout.fillWidth: true + width: Kirigami.Units.gridUnit * 2 } SsrfButton { id: acceptButton |