From 0cce45e854647f1be9bade00e3c784e570988ddc Mon Sep 17 00:00:00 2001 From: Serhiy Mytrovtsiy Date: Sat, 22 Apr 2023 15:46:41 +0200 Subject: [PATCH] fix: fixed user color for the CPU widget (#1429) --- Modules/CPU/main.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/CPU/main.swift b/Modules/CPU/main.swift index a826e61a..32130db3 100644 --- a/Modules/CPU/main.swift +++ b/Modules/CPU/main.swift @@ -69,7 +69,7 @@ public class CPU: Module { } private var userColor: NSColor { let color = Color.secondBlue - let key = Store.shared.string(key: "\(self.config.name)_systemColor", defaultValue: color.key) + let key = Store.shared.string(key: "\(self.config.name)_userColor", defaultValue: color.key) if let c = Color.fromString(key).additional as? NSColor { return c }