Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/atoidejouer/ui/screen/splash.py
diff options
context:
space:
mode:
Diffstat (limited to 'atoidejouer/ui/screen/splash.py')
-rw-r--r--atoidejouer/ui/screen/splash.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/atoidejouer/ui/screen/splash.py b/atoidejouer/ui/screen/splash.py
index a822b74..77cacc7 100644
--- a/atoidejouer/ui/screen/splash.py
+++ b/atoidejouer/ui/screen/splash.py
@@ -20,19 +20,19 @@ logger = logging.getLogger('atoidejouer')
class Splash(graphics.Scene):
- def __init__(self, toolbar):
+ def __init__(self, activity):
# ..
graphics.Scene.__init__(self)
# ..
# self.background_color = "#ffffff"
# ..
self.__current = 0
- # toolbar keep
- self.toolbar = toolbar
+ # activity keep
+ self.activity = activity
# ..
self._image = None
# ..
- if self.toolbar is None:
+ if self.activity is None:
self._screen_height = None
self._screen_width = None
else:
@@ -67,6 +67,6 @@ class Splash(graphics.Scene):
self.add_child(self._image)
# show
self.show()
- # update toolbar
- self.toolbar.activity.set_canvas(self)
+ # update activity
+ self.activity.set_canvas(self)