Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
time4tea committed Feb 10, 2024
1 parent 9403c5f commit 80eab5c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gopro_overlay/widgets/msi.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def __init__(self, size: int, font, needle: bool, reading: Callable[[], float],
self.reading = reading
self.outline = outline

self.width = int(size / 17) # 15
self.width = int(size / 17)

self.step = 5

Expand Down Expand Up @@ -127,8 +127,8 @@ def __init__(self, size: int, font, reading: Callable[[], float], green: int, ye
self.reading = reading
self.outline = outline

self.width = int(size / 17) # 15
self.offset = int(size / 51) # 5
self.width = int(size / 17)
self.offset = int(size / 51)

self.step = 5

Expand Down

0 comments on commit 80eab5c

Please sign in to comment.