Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/graphics/tray.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/graphics/tray.py')
-rw-r--r--tests/graphics/tray.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/graphics/tray.py b/tests/graphics/tray.py
index 8088fde..9bbf0b2 100644
--- a/tests/graphics/tray.py
+++ b/tests/graphics/tray.py
@@ -41,6 +41,15 @@ for i in range(0, 100):
tray.add_item(button)
button.show()
+tray = HTray()
+box.pack_start(tray, False)
+tray.show()
+
+for i in range(0, 10):
+ button = TrayButton(icon_name=theme_icons[i])
+ tray.add_item(button)
+ button.show()
+
test.pack_start(box)
box.show()