From b96344a98afb2f74aa962b0171be611eac0e2cbb Mon Sep 17 00:00:00 2001 From: nickedyer Date: Mon, 20 Feb 2023 00:53:48 -0500 Subject: [PATCH] made moving dial more blue --- thermopi/surfaces/dial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thermopi/surfaces/dial.py b/thermopi/surfaces/dial.py index e6b3c30..d467ad8 100644 --- a/thermopi/surfaces/dial.py +++ b/thermopi/surfaces/dial.py @@ -20,7 +20,7 @@ class Dial(pygame.Surface): pygame.draw.circle(self, (0, 255, 0), self.center, self.dial_size / 2, 5) if self.moving: - pygame.draw.circle(self, (48, 48, 48), self.center, self.dial_size / 2 * 0.95) + pygame.draw.circle(self, (48, 48, 64), self.center, self.dial_size / 2 * 0.95) else: pygame.draw.circle(self, (64, 64, 64), self.center, self.dial_size / 2 * 0.95)