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 878c59a..e2dd229 100644
--- a/activity.py
+++ b/activity.py
@@ -98,7 +98,11 @@ class TestThemeActivity(activity.Activity):
notebook = gtk.Notebook()
hbox = gtk.HBox()
- notebook.append_page(hbox)
+ notebook.append_page(hbox, gtk.Label('Page 1'))
+ hbox2 = gtk.HBox()
+ notebook.append_page(hbox2, gtk.Label('Page 2'))
+ hbox3 = gtk.HBox()
+ notebook.append_page(hbox3, gtk.Label('Page 3'))
vbox1 = gtk.VBox()