Skip to content
Snippets Groups Projects
Commit d3a25094 authored by pippin's avatar pippin
Browse files

ui: increase icon sizes in overlay

parent 1c885f83
Branches
Tags
No related merge requests found
...@@ -394,7 +394,7 @@ class USBIcon(Icon): ...@@ -394,7 +394,7 @@ class USBIcon(Icon):
Might or might not be related to a certain serial bus. Might or might not be related to a certain serial bus.
""" """
WIDTH: int = 20 WIDTH: int = 30
def visible(self) -> bool: def visible(self) -> bool:
return sys_kernel.usb_connected() return sys_kernel.usb_connected()
...@@ -415,7 +415,7 @@ class USBIcon(Icon): ...@@ -415,7 +415,7 @@ class USBIcon(Icon):
class WifiIcon(Icon): class WifiIcon(Icon):
WIDTH: int = 15 WIDTH: int = 30
def __init__(self) -> None: def __init__(self) -> None:
super().__init__() super().__init__()
...@@ -444,6 +444,8 @@ class WifiIcon(Icon): ...@@ -444,6 +444,8 @@ class WifiIcon(Icon):
class BatteryIcon(Icon): class BatteryIcon(Icon):
WIDTH: int = 30
def __init__(self) -> None: def __init__(self) -> None:
super().__init__() super().__init__()
self._percent = 100.0 self._percent = 100.0
...@@ -519,7 +521,7 @@ class IconTray(Overlay): ...@@ -519,7 +521,7 @@ class IconTray(Overlay):
for i, v in enumerate(self.visible): for i, v in enumerate(self.visible):
ctx.save() ctx.save()
ctx.translate(x0, -100) ctx.translate(x0, -100)
ctx.scale(0.1, 0.1) ctx.scale(0.13, 0.13)
v.draw(ctx) v.draw(ctx)
ctx.restore() ctx.restore()
x0 = x0 + v.WIDTH x0 = x0 + v.WIDTH
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment