summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/main.qml
diff options
context:
space:
mode:
authorGravatar Jan Mulder <jlmulder@xs4all.nl>2017-07-26 10:34:29 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-07-26 21:57:11 +0900
commitd22f67925ef4893832c26deb44fef50589c6fff8 (patch)
tree345a7e74df0c734a6ca9d99fb146ad4edb76e168 /mobile-widgets/qml/main.qml
parent1ebd7dd4303efb4938b1131f0127ad680746666a (diff)
downloadsubsurface-d22f67925ef4893832c26deb44fef50589c6fff8.tar.gz
QML UI: color the status bar correctly
In commit e9503cfa3d1740 re-coloring of the status bar was forgotten. Added here. Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
Diffstat (limited to 'mobile-widgets/qml/main.qml')
-rw-r--r--mobile-widgets/qml/main.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml
index 2538edda2..641dbbd19 100644
--- a/mobile-widgets/qml/main.qml
+++ b/mobile-widgets/qml/main.qml
@@ -302,7 +302,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.darkerPrimaryColor)
+ manager.setStatusbarColor(subsurfaceTheme.primaryColor)
subsurfaceTheme.drawerColor = subsurfaceTheme.lightDrawerColor
}
@@ -319,7 +319,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.darkerPrimaryColor)
+ manager.setStatusbarColor(subsurfaceTheme.primaryColor)
subsurfaceTheme.drawerColor = subsurfaceTheme.lightDrawerColor
}
@@ -336,7 +336,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.darkerPrimaryColor)
+ manager.setStatusbarColor(subsurfaceTheme.primaryColor)
subsurfaceTheme.drawerColor = subsurfaceTheme.darkDrawerColor
}