diff options
author | Joakim Bygdell <j.bygdell@gmail.com> | 2017-07-17 22:08:39 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-07-18 00:49:31 -0700 |
commit | c1e0324d95baef6f6b0f7e0568f3d2b058f4e56f (patch) | |
tree | 169ef4011dc204fb33c471cd4f0a504eff6b1cc7 /mobile-widgets/qml | |
parent | 8f0621f7335ac911ddfa6a7b03e8ee1c85af7928 (diff) | |
download | subsurface-c1e0324d95baef6f6b0f7e0568f3d2b058f4e56f.tar.gz |
QML UI: set the color of the action side-buttons
This sets the color of the action side-buttons to the same color as the overlay drawer.
Signed-off-by: Joakim Bygdell <j.bygdell@gmail.com>
Diffstat (limited to 'mobile-widgets/qml')
-rw-r--r-- | mobile-widgets/qml/main.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index 7c12f845f..e7bfd7a84 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -440,7 +440,7 @@ if you have network connectivity and want to sync your data to cloud storage."), Kirigami.Theme.buttonHoverColor = Qt.binding(function() { return darkerPrimaryColor }) Kirigami.Theme.viewBackgroundColor = Qt.binding(function() { return drawerColor }) Kirigami.Theme.viewTextColor = Qt.binding(function() { return textColor }) - Kirigami.Theme.buttonBackgroundColor = Qt.binding(function() { return darkerPrimaryColor }) + Kirigami.Theme.buttonBackgroundColor = Qt.binding(function() { return drawerColor }) Kirigami.Theme.buttonTextColor = Qt.binding(function() { return textColor }) // this needs to pick the theme from persistent preference settings |