From a5b961a72d433b527f418a0fc8a39258524d298b Mon Sep 17 00:00:00 2001
From: Serge Bazanski <q3k@q3k.org>
Date: Fri, 18 Aug 2023 02:41:13 +0200
Subject: [PATCH] py: pixelpush wifi icon

---
 python_payload/st3m/ui/elements/overlays.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/python_payload/st3m/ui/elements/overlays.py b/python_payload/st3m/ui/elements/overlays.py
index ad245151e1..d1dbdbf443 100644
--- a/python_payload/st3m/ui/elements/overlays.py
+++ b/python_payload/st3m/ui/elements/overlays.py
@@ -401,11 +401,11 @@ class WifiIcon(Icon):
 
         r = self._rssi
         ctx.gray(1.0 if r > -75 else 0.2)
-        ctx.arc(0, 60, 100, a, b, 0).stroke()
+        ctx.arc(0, 65, 100, a, b, 0).stroke()
         ctx.gray(1.0 if r > -85 else 0.2)
-        ctx.arc(0, 60, 70, a, b, 0).stroke()
+        ctx.arc(0, 65, 70, a, b, 0).stroke()
         ctx.gray(1.0 if r > -95 else 0.2)
-        ctx.arc(0, 60, 40, a, b, 0).stroke()
+        ctx.arc(0, 65, 40, a, b, 0).stroke()
 
     def think(self, ins: InputState, delta_ms: int) -> None:
         self._rssi = st3m.wifi.rssi()
-- 
GitLab