Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel QuiƱones <manuq@laptop.org>2011-11-25 15:02:32 (GMT)
committer Manuel QuiƱones <manuq@laptop.org>2011-11-25 15:02:32 (GMT)
commit5a852050018e618798be9884757cfc376e3bb995 (patch)
tree89e6332d427b38c42e94b6da8ba994d71c3d43eb
parent95cbbb1159f4b9656ae46da83d8f49c1992c14cf (diff)
more notebook tabsHEADmaster
-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()