summaryrefslogtreecommitdiff
path: root/wasp/apps
diff options
context:
space:
mode:
Diffstat (limited to 'wasp/apps')
-rw-r--r--wasp/apps/launcher.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/wasp/apps/launcher.py b/wasp/apps/launcher.py
index 4e76ab1..071a90c 100644
--- a/wasp/apps/launcher.py
+++ b/wasp/apps/launcher.py
@@ -29,7 +29,7 @@ class LauncherApp():
else:
i -= 1
if i < 0:
- wasp.system.switch(wasp.system.applications[0])
+ wasp.system.switch(wasp.system.quick_ring[0])
return
self._page = i
@@ -50,11 +50,11 @@ class LauncherApp():
@property
def _num_pages(self):
"""Work out what the highest possible pages it."""
- num_apps = len(wasp.system.applications)
+ num_apps = len(wasp.system.launcher_ring)
return (num_apps + 3) // 4
def _get_page(self, i):
- apps = wasp.system.applications
+ apps = wasp.system.launcher_ring
page = apps[4*i: 4*(i+1)]
while len(page) < 4:
page.append(None)