Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-07-24 09:01:25 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-07-24 09:01:25 (GMT)
commit1e3633baf791e00e4a17c09d7c29dde9762d55ed (patch)
tree20109f3d2545adfd986fae98104f31d30c5add4d /examples
parent1c35f8d92ca82525c82ede9b543fe603798ee817 (diff)
Implement translation
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/scene/scene.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/scene/scene.py b/examples/scene/scene.py
index 7a6fcdb..b54c40c 100755
--- a/examples/scene/scene.py
+++ b/examples/scene/scene.py
@@ -33,6 +33,7 @@ pixbuf = gtk.gdk.pixbuf_new_from_file('background.png')
stage.add(PixbufActor(pixbuf))
icons_group = Group()
+icons_group.set_position(100, 100)
i = 1
while i <= 5:
@@ -55,7 +56,7 @@ drawing_area.show()
window.show()
-timeline = Timeline(stage, 300)
+timeline = Timeline(stage, 200)
timeline.connect('next-frame', __next_frame_cb, icons_group)
timeline.connect('completed', __completed_cb, icons_group)
timeline.start()