Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/activity.py
diff options
context:
space:
mode:
authorflorent <florent.pigout@gmail.com>2011-03-16 01:33:35 (GMT)
committer florent <florent.pigout@gmail.com>2011-03-16 01:33:35 (GMT)
commitfc41f59fb40c539796cefab7014e90121905296f (patch)
treefdd938d3d649015dee35dd11db88565b47e48615 /activity.py
parent7584bc969a588849642eb7fd0e793dd47667e560 (diff)
bugfix and enhancement on motion and rendering
Diffstat (limited to 'activity.py')
-rw-r--r--activity.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/activity.py b/activity.py
index c983b83..6192958 100644
--- a/activity.py
+++ b/activity.py
@@ -65,8 +65,6 @@ class ThreadAnim(threading.Thread):
# ..
_s.toolbar.pause()
else:
- # ??
- self._activity.story_keys.ask_clear()
# update scene
if hasattr(_s, 'scene'):
# ..
@@ -75,6 +73,7 @@ class ThreadAnim(threading.Thread):
_s.refresh()
# update timeline
if hasattr(_s, 'timeline'):
+ # ..
_s.timeline.refresh()
else:
pass
@@ -184,6 +183,8 @@ class AToiDeJouerActivity(activity.Activity):
if self._current in self._screens:
# show
self._screens[toolbar.name]._show()
+ # do pause
+ toolbar.pause()
# update all
self._thread.set_time()
# exit
@@ -203,6 +204,7 @@ class AToiDeJouerActivity(activity.Activity):
# update slider
self._update_slider(toolbar)
+
def read_file(self, file_path):
"""Dummy overiding ...
"""