Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/activity.py
diff options
context:
space:
mode:
Diffstat (limited to 'activity.py')
-rw-r--r--activity.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/activity.py b/activity.py
index 1939415..a76e0a0 100644
--- a/activity.py
+++ b/activity.py
@@ -26,6 +26,9 @@ import tempfile
import zipfile
import json
+import logging
+logger = logging.getLogger()
+
import gtk
import gobject
@@ -86,7 +89,8 @@ class AnimateActivity(activity.Activity):
def _move_cb(self, widget, index, new_index):
self._animation.move(index, new_index)
- def _current_frame_changed_cb(self, index):
+ def _current_frame_changed_cb(self, widget, index):
+ logger.debug('%d' % index)
self._animation.set_current_frame(index)
def write_file(self, file_path):