diff options
author | Jan Mulder <jlmulder@xs4all.nl> | 2018-02-16 11:17:20 +0100 |
---|---|---|
committer | Jan Mulder <jlmulder@xs4all.nl> | 2018-02-17 21:05:33 +0100 |
commit | 65d80d3cd0b5cd5b06abbe24d6d2bfa76b38b497 (patch) | |
tree | 044f62c15012391a9def3cb71b12e5c0bd69892f /mobile-widgets/qml/DownloadFromDiveComputer.qml | |
parent | 01188905ae05a148c6202ab1909a6f5e06d02bda (diff) | |
download | subsurface-65d80d3cd0b5cd5b06abbe24d6d2bfa76b38b497.tar.gz |
Mobile QML UI: fix background colors
For some reason, after the update of the main.qml to version 2.2,
all Kirigami Pages and scrollablePages show up plain white.
So now, set a proper background for these pages.
Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
Diffstat (limited to 'mobile-widgets/qml/DownloadFromDiveComputer.qml')
-rw-r--r-- | mobile-widgets/qml/DownloadFromDiveComputer.qml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mobile-widgets/qml/DownloadFromDiveComputer.qml b/mobile-widgets/qml/DownloadFromDiveComputer.qml index 426b9b8ab..6567f0983 100644 --- a/mobile-widgets/qml/DownloadFromDiveComputer.qml +++ b/mobile-widgets/qml/DownloadFromDiveComputer.qml @@ -14,6 +14,7 @@ Kirigami.Page { height: parent.height Layout.fillWidth: true; title: qsTr("Dive Computer") + background: Rectangle { color: subsurfaceTheme.backgroundColor } property alias dcImportModel: importModel property bool divesDownloaded: false |