diff options
author | Jan Mulder <jlmulder@xs4all.nl> | 2018-10-04 09:57:31 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-10-07 17:43:34 +0300 |
commit | 3c18618bfb229f3d408ebbe3def18dde891a53e0 (patch) | |
tree | 307472438d9b5f64816f700492ec0571f0e93d68 /mobile-widgets/qml | |
parent | a8f45406bdad1bd10854d609b326b5567ef92353 (diff) | |
download | subsurface-3c18618bfb229f3d408ebbe3def18dde891a53e0.tar.gz |
QML UI, trivial: set proper background color GPS list
The background color was plain white, where we use a slightly different
color in other places. In addition, the background when clicking on a row
did not follow the theme setting. Consistency fix.
Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
Diffstat (limited to 'mobile-widgets/qml')
-rw-r--r-- | mobile-widgets/qml/GpsList.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mobile-widgets/qml/GpsList.qml b/mobile-widgets/qml/GpsList.qml index c621fbf58..c6a9ebfd6 100644 --- a/mobile-widgets/qml/GpsList.qml +++ b/mobile-widgets/qml/GpsList.qml @@ -20,6 +20,8 @@ Kirigami.ScrollablePage { id: listItem enabled: true width: parent.width + backgroundColor: subsurfaceTheme.backgroundColor + activeBackgroundColor: subsurfaceTheme.primaryColor GridLayout { columns: 4 id: timeAndName |