diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-07-09 18:06:12 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-07-09 18:06:12 -0700 |
commit | ff659396c37ba2439f8ce18228cba546d4814b75 (patch) | |
tree | 0c3b45ac7ac1f6b73e0030e01d6d4321291f758b /mobile-widgets | |
parent | c59a74029b3acde8443db0abebcbc89d78504dee (diff) | |
download | subsurface-ff659396c37ba2439f8ce18228cba546d4814b75.tar.gz |
QML UI: fix typo in color values
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets')
-rw-r--r-- | mobile-widgets/qml/Preferences.qml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mobile-widgets/qml/Preferences.qml b/mobile-widgets/qml/Preferences.qml index 9b9aaa833..6004147c7 100644 --- a/mobile-widgets/qml/Preferences.qml +++ b/mobile-widgets/qml/Preferences.qml @@ -63,7 +63,7 @@ Kirigami.Page { x: bluebutton.leftPadding y: parent.height / 2 - height / 2 radius: 4 - border.color: bluebutton.down ? subsurfaceTheme.PrimaryColor : subsurfaceTheme.darkerPrimaryColor + border.color: bluebutton.down ? subsurfaceTheme.primaryColor : subsurfaceTheme.darkerPrimaryColor color: subsurfaceTheme.backgroundColor Rectangle { @@ -72,7 +72,7 @@ Kirigami.Page { x: 4 y: 4 radius: 3 - color: bluebutton.down ? subsurfaceTheme.PrimaryColor : subsurfaceTheme.darkerPrimaryColor + color: bluebutton.down ? subsurfaceTheme.primaryColor : subsurfaceTheme.darkerPrimaryColor visible: bluebutton.checked } } @@ -129,7 +129,7 @@ Kirigami.Page { x: pinkbutton.leftPadding y: parent.height / 2 - height / 2 radius: 4 - border.color: pinkbutton.down ? subsurfaceTheme.PrimaryColor : subsurfaceTheme.darkerPrimaryColor + border.color: pinkbutton.down ? subsurfaceTheme.primaryColor : subsurfaceTheme.darkerPrimaryColor color: subsurfaceTheme.backgroundColor Rectangle { @@ -138,7 +138,7 @@ Kirigami.Page { x: 4 y: 4 radius: 3 - color: pinkbutton.down ? subsurfaceTheme.PrimaryColor : subsurfaceTheme.darkerPrimaryColor + color: pinkbutton.down ? subsurfaceTheme.primaryColor : subsurfaceTheme.darkerPrimaryColor visible: pinkbutton.checked } } @@ -195,7 +195,7 @@ Kirigami.Page { x: darkbutton.leftPadding y: parent.height / 2 - height / 2 radius: 4 - border.color: darkbutton.down ? subsurfaceTheme.PrimaryColor : subsurfaceTheme.darkerPrimaryColor + border.color: darkbutton.down ? subsurfaceTheme.primaryColor : subsurfaceTheme.darkerPrimaryColor color: subsurfaceTheme.backgroundColor Rectangle { @@ -204,7 +204,7 @@ Kirigami.Page { x: 4 y: 4 radius: 3 - color: darkbutton.down ? subsurfaceTheme.PrimaryColor : subsurfaceTheme.darkerPrimaryColor + color: darkbutton.down ? subsurfaceTheme.primaryColor : subsurfaceTheme.darkerPrimaryColor visible: darkbutton.checked } } |