summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/main.qml
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2017-06-23 21:32:31 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-06-23 21:36:59 -0700
commit94bc7563916f153338145ea4dff558eaa170701a (patch)
tree26ccd7e094080285efa71621db554e395f8c3f76 /mobile-widgets/qml/main.qml
parent206df227f8cf7026af7f67a49d717ba67a51d944 (diff)
downloadsubsurface-94bc7563916f153338145ea4dff558eaa170701a.tar.gz
QML UI: Theme colors: fix bad typo
Here I confused myself with "dark" theme and the "darkerPrimary" colorls... Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
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 fe8c58353..f4ea7aa79 100644
--- a/mobile-widgets/qml/main.qml
+++ b/mobile-widgets/qml/main.qml
@@ -318,7 +318,7 @@ Kirigami.ApplicationWindow {
subsurfaceTheme.lightPrimaryTextColor = subsurfaceTheme.blueLightPrimaryTextColor
subsurfaceTheme.backgroundColor = subsurfaceTheme.blueBackgroundColor
subsurfaceTheme.textColor = subsurfaceTheme.blueTextColor
- manager.setStatusbarColor(subsurfaceTheme.darkPrimaryColor)
+ manager.setStatusbarColor(subsurfaceTheme.darkerPrimaryColor)
}
function pinkTheme() {
@@ -331,7 +331,7 @@ Kirigami.ApplicationWindow {
subsurfaceTheme.lightPrimaryTextColor = subsurfaceTheme.pinkLightPrimaryTextColor
subsurfaceTheme.backgroundColor = subsurfaceTheme.pinkBackgroundColor
subsurfaceTheme.textColor = subsurfaceTheme.pinkTextColor
- manager.setStatusbarColor(subsurfaceTheme.darkPrimaryColor)
+ manager.setStatusbarColor(subsurfaceTheme.darkerPrimaryColor)
}
function darkTheme() {
@@ -344,7 +344,7 @@ Kirigami.ApplicationWindow {
subsurfaceTheme.lightPrimaryTextColor = subsurfaceTheme.darkLightPrimaryTextColor
subsurfaceTheme.backgroundColor = subsurfaceTheme.darkBackgroundColor
subsurfaceTheme.textColor = subsurfaceTheme.darkTextColor
- manager.setStatusbarColor(subsurfaceTheme.darkPrimaryColor)
+ manager.setStatusbarColor(subsurfaceTheme.darkerPrimaryColor)
}
QtObject {