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.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/Activity.py b/Activity.py
index 74b5b5e..9c202b4 100644
--- a/Activity.py
+++ b/Activity.py
@@ -106,7 +106,13 @@ class Canvas(gtk.VBox):
def __init__(self):
gtk.VBox.__init__(self)
- self.add(gtk.Label("Of "))
- self.add(gtk.Label("to"))
+ self._hbox = gtk.HBox()
+ self.combo1 = gtk.Combo_box_new_text()
+ self.combo2 = gtk.Combo_box_new_text()
+
+ self._hbox.add(gtk.Label("Of "))
+ self._hbox.add(self.combo1)
+ self._hbox.add(gtk.Label("to"))
+ self._hbox.add(self.combo2)
self.show_all()