summaryrefslogtreecommitdiff
path: root/wasp/wasp.py
diff options
context:
space:
mode:
authorDaniel Thompson <daniel@redfelineninja.org.uk>2021-06-20 09:28:27 (GMT)
committerDaniel Thompson <daniel@redfelineninja.org.uk>2021-06-20 09:28:27 (GMT)
commit1a4b678b2b815884cb712244d8a1b5e50a5cbd86 (patch)
tree87391a65edd67a3d43478d3a448f734967ebd955 /wasp/wasp.py
parent2a1ac322799ce0ae549110ec96dbb2caa28cf6d0 (diff)
apps: FacesApp: Add a watch face chooser
This app is enabled by default and allows users to select a watch face based on a fullscreen preview of how the app will draw the screen. Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
Diffstat (limited to 'wasp/wasp.py')
-rw-r--r--wasp/wasp.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/wasp/wasp.py b/wasp/wasp.py
index eaf3737..442d677 100644
--- a/wasp/wasp.py
+++ b/wasp/wasp.py
@@ -23,6 +23,7 @@ import watch
import widgets
from apps.clock import ClockApp
+from apps.faces import FacesApp
from apps.heart import HeartApp
from apps.launcher import LauncherApp
from apps.pager import PagerApp, CrashApp, NotificationApp
@@ -153,8 +154,10 @@ class Manager():
(StepCounterApp, True),
(StopwatchApp, True),
(HeartApp, True),
+ (FacesApp, False),
+ (SettingsApp, False),
(SoftwareApp, False),
- (SettingsApp, False) ):
+ ):
try:
a = app()