mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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>
This commit is contained in:
parent
206df227f8
commit
94bc756391
1 changed files with 3 additions and 3 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue