Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/activity.py
diff options
context:
space:
mode:
authorManuel QuiƱones <manuq@laptop.org>2011-11-25 15:03:20 (GMT)
committer Manuel QuiƱones <manuq@laptop.org>2011-11-25 15:03:20 (GMT)
commit071c96cf8100164398938c6ec9449601beaa7504 (patch)
tree92e8513350de669e76c1257180b935fa7bf5e33a /activity.py
parentff94cde23cec0c5c432d155215e78833c749b0e3 (diff)
more notebook tabs
Diffstat (limited to 'activity.py')
-rw-r--r--activity.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/activity.py b/activity.py
index a01702c..3ad0154 100644
--- a/activity.py
+++ b/activity.py
@@ -109,6 +109,10 @@ class TestTheme3Activity(activity.Activity):
notebook = Gtk.Notebook()
hbox = Gtk.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()