Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/graphics/iconcache.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/graphics/iconcache.py')
-rw-r--r--tests/graphics/iconcache.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/graphics/iconcache.py b/tests/graphics/iconcache.py
index 9508f6b..5a027d9 100644
--- a/tests/graphics/iconcache.py
+++ b/tests/graphics/iconcache.py
@@ -19,7 +19,7 @@
Test the sugar3.graphics.icon.* cache.
"""
-import gtk
+from gi.repository import Gtk
from sugar3.graphics.icon import Icon
from sugar3.graphics.xocolor import XoColor
@@ -54,13 +54,13 @@ def _button_activated_cb(button):
for d in data:
icon = Icon(icon_name=d[0],
- icon_size=gtk.ICON_SIZE_LARGE_TOOLBAR,
+ icon_size=Gtk.IconSize.LARGE_TOOLBAR,
xo_color=XoColor(d[1]))
- test.pack_start(icon)
+ test.pack_start(icon, True, True, 0)
icon.show()
-button = gtk.Button('mec mac')
-test.pack_start(button)
+button = Gtk.Button('mec mac')
+test.pack_start(button, True, True, 0)
button.connect('activate', _button_activated_cb)
button.show()