diff options
Diffstat (limited to 'wasp/apps')
| -rw-r--r-- | wasp/apps/clock.py | 2 | ||||
| -rw-r--r-- | wasp/apps/fibonacci_clock.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/wasp/apps/clock.py b/wasp/apps/clock.py index 17485c0..88ed2c7 100644 --- a/wasp/apps/clock.py +++ b/wasp/apps/clock.py @@ -40,7 +40,7 @@ class ClockApp(): def __init__(self): self.meter = wasp.widgets.BatteryMeter() - self.notifier = wasp.widgets.StatusBar() + self.notifier = wasp.widgets.NotificationBar() def foreground(self): """Activate the application.""" diff --git a/wasp/apps/fibonacci_clock.py b/wasp/apps/fibonacci_clock.py index 5e3d27f..de59bc3 100644 --- a/wasp/apps/fibonacci_clock.py +++ b/wasp/apps/fibonacci_clock.py @@ -54,7 +54,7 @@ class FibonacciClockApp(): def __init__(self): self.meter = wasp.widgets.BatteryMeter() - self.notifier = wasp.widgets.StatusBar() + self.notifier = wasp.widgets.NotificationBar() self.fields = b'\x05\x03\x02\x01\x01' self.color_codes = [0xffff,0xf800,0x07e0,0x001f] # White, red, green and blue |
