diff options
author | Joakim Bygdell <j.bygdell@gmail.com> | 2017-07-08 14:20:48 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-07-09 03:06:04 +0900 |
commit | 12ac75c7dd2d94075c1b63b4113db3dcf08df935 (patch) | |
tree | 6b88343a061872d06ff68b8d915cf3e1da41541f /mobile-widgets/qml/DiveDetailsView.qml | |
parent | b1f4a2975f7b073927cda4e44af2ee74f9aba0f2 (diff) | |
download | subsurface-12ac75c7dd2d94075c1b63b4113db3dcf08df935.tar.gz |
QML UI: Proper button color
Make the "map it" button follow the theme color.
Signed-off-by: Joakim Bygdell <j.bygdell@gmail.com>
Diffstat (limited to 'mobile-widgets/qml/DiveDetailsView.qml')
-rw-r--r-- | mobile-widgets/qml/DiveDetailsView.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mobile-widgets/qml/DiveDetailsView.qml b/mobile-widgets/qml/DiveDetailsView.qml index 95aed5a47..c8c7e3a55 100644 --- a/mobile-widgets/qml/DiveDetailsView.qml +++ b/mobile-widgets/qml/DiveDetailsView.qml @@ -59,7 +59,7 @@ Item { id: gpsButton height: Math.round(1.5 * Kirigami.Units.gridUnit) width: dive.gps == "" ? 0 : buttonText.width + Kirigami.Units.gridUnit - color: subsurfaceTheme.darkPrimaryColor + color: subsurfaceTheme.darkerPrimaryColor antialiasing: true radius: Kirigami.Units.smallSpacing * 2 anchors { @@ -70,7 +70,7 @@ Item { Kirigami.Label { id: buttonText text: qsTr("Map it") - color: subsurfaceTheme.darkPrimaryTextColor + color: subsurfaceTheme.darkerPrimaryTextColor anchors { horizontalCenter: parent.horizontalCenter verticalCenter: parent.verticalCenter |