aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-10-12 11:38:04 -0400
committerKen Moore <ken@ixsystems.com>2017-10-12 11:38:04 -0400
commit465ea1c7cb25bbc45c33be0e7bef5541540c5b20 (patch)
tree47d3a06f9bd1cb61419ad9f5f890236ecfc5a896 /src-qt5/core
parentRemove the plaintext input option for lumina-checkpass, and add more usage re... (diff)
downloadlumina-465ea1c7cb25bbc45c33be0e7bef5541540c5b20.tar.gz
lumina-465ea1c7cb25bbc45c33be0e7bef5541540c5b20.tar.bz2
lumina-465ea1c7cb25bbc45c33be0e7bef5541540c5b20.zip
Tinker with the color divisions in "Warp" a bit - ensure more even distribution of colors
Diffstat (limited to 'src-qt5/core')
-rw-r--r--src-qt5/core/lumina-desktop-unified/extrafiles/screensavers/qml_scripts/Warp.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src-qt5/core/lumina-desktop-unified/extrafiles/screensavers/qml_scripts/Warp.qml b/src-qt5/core/lumina-desktop-unified/extrafiles/screensavers/qml_scripts/Warp.qml
index 08ae15a0..1cf9bc37 100644
--- a/src-qt5/core/lumina-desktop-unified/extrafiles/screensavers/qml_scripts/Warp.qml
+++ b/src-qt5/core/lumina-desktop-unified/extrafiles/screensavers/qml_scripts/Warp.qml
@@ -7,8 +7,8 @@ Rectangle {
color: "black"
function getStarColor(num){
- if(num < 0.5) { return "white" }
- if(num < 1.5) { return "mistyrose" }
+ if(num < 1) { return "white" }
+ if(num < 2) { return "mistyrose" }
return "lightblue"
}
bgstack15