QML UI: color the status bar correctly

In commit e9503cfa3d re-coloring of the status bar was
forgotten. Added here.

Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
This commit is contained in:
Jan Mulder 2017-07-26 10:34:29 +02:00 committed by Dirk Hohndel
parent 1ebd7dd430
commit d22f67925e

View file

@ -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
}