diff options
author | Jan Mulder <jlmulder@xs4all.nl> | 2017-07-28 15:59:49 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-07-28 07:30:44 -0700 |
commit | e6ee87efec89726b856a15e747b9fbd2298bf1b1 (patch) | |
tree | 34ae296c6f972935e82a89d5bcc6c835ab9bd427 | |
parent | e1b880f444172a04d5dd8deda7c954fbbc697708 (diff) | |
download | subsurface-e6ee87efec89726b856a15e747b9fbd2298bf1b1.tar.gz |
Revert "QML UI: color the status bar correctly"
This reverts commit d22f67925ef4893832c26deb44fef50589c6fff8.
-rw-r--r-- | mobile-widgets/qml/main.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index 8666b868c..e9560036d 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -299,7 +299,7 @@ if you have network connectivity and want to sync your data to cloud storage."), subsurfaceTheme.backgroundColor = subsurfaceTheme.blueBackgroundColor subsurfaceTheme.textColor = subsurfaceTheme.blueTextColor subsurfaceTheme.secondaryTextColor = subsurfaceTheme.blueSecondaryTextColor - manager.setStatusbarColor(subsurfaceTheme.primaryColor) + manager.setStatusbarColor(subsurfaceTheme.darkerPrimaryColor) subsurfaceTheme.drawerColor = subsurfaceTheme.lightDrawerColor } @@ -316,7 +316,7 @@ if you have network connectivity and want to sync your data to cloud storage."), subsurfaceTheme.backgroundColor = subsurfaceTheme.pinkBackgroundColor subsurfaceTheme.textColor = subsurfaceTheme.pinkTextColor subsurfaceTheme.secondaryTextColor = subsurfaceTheme.pinkSecondaryTextColor - manager.setStatusbarColor(subsurfaceTheme.primaryColor) + manager.setStatusbarColor(subsurfaceTheme.darkerPrimaryColor) subsurfaceTheme.drawerColor = subsurfaceTheme.lightDrawerColor } @@ -333,7 +333,7 @@ if you have network connectivity and want to sync your data to cloud storage."), subsurfaceTheme.backgroundColor = subsurfaceTheme.darkBackgroundColor subsurfaceTheme.textColor = subsurfaceTheme.darkTextColor subsurfaceTheme.secondaryTextColor = subsurfaceTheme.darkSecondaryTextColor - manager.setStatusbarColor(subsurfaceTheme.primaryColor) + manager.setStatusbarColor(subsurfaceTheme.darkerPrimaryColor) subsurfaceTheme.drawerColor = subsurfaceTheme.darkDrawerColor } |