diff options
| author | HiZe <super@hize.be> | 2025-07-13 02:17:23 +0200 |
|---|---|---|
| committer | Linnea Gräf <nea@nea.moe> | 2025-08-10 15:46:30 +0200 |
| commit | bcdf6feb3b5f608274393d2715dfeb70c39c401e (patch) | |
| tree | bc38656870d469f91bc53f231297102e3dd6d26e | |
| parent | 4cd6602805c052ad96b4a39a72b187478d3e501a (diff) | |
| download | Firmament-bcdf6feb3b5f608274393d2715dfeb70c39c401e.tar.gz Firmament-bcdf6feb3b5f608274393d2715dfeb70c39c401e.tar.bz2 Firmament-bcdf6feb3b5f608274393d2715dfeb70c39c401e.zip | |
fix chromacolour
| -rw-r--r-- | src/main/kotlin/gui/config/ColourHandler.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/gui/config/ColourHandler.kt b/src/main/kotlin/gui/config/ColourHandler.kt index 7d121ab..83ce8ac 100644 --- a/src/main/kotlin/gui/config/ColourHandler.kt +++ b/src/main/kotlin/gui/config/ColourHandler.kt @@ -34,7 +34,7 @@ class ColourHandler(val config: ManagedConfig) : delegate.timeForFullRotationInMillis ) - fun into(): ChromaColour = ChromaColour(hue, saturation, brightness, alpha, timeForFullRotationInMillis) + fun into(): ChromaColour = ChromaColour(hue, saturation, brightness, timeForFullRotationInMillis, alpha) } object ChromaSerializer : KSerializer<ChromaColour> { |
