Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/graphics/iconwidget.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/graphics/iconwidget.py b/tests/graphics/iconwidget.py
index 829ab85..22d9276 100644
--- a/tests/graphics/iconwidget.py
+++ b/tests/graphics/iconwidget.py
@@ -39,6 +39,12 @@ icon = Icon(icon_name='computer-xo',
test.pack_start(icon)
icon.show()
+icon = Icon(icon_name='battery-000',
+ icon_size=gtk.ICON_SIZE_LARGE_TOOLBAR,
+ badge_name='badge-busy')
+test.pack_start(icon)
+icon.show()
+
test.show()
if __name__ == "__main__":