Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Ortiz <rafael@activitycentral.com>2012-08-02 02:00:46 (GMT)
committer Rafael Ortiz <rafael@activitycentral.com>2012-08-02 02:00:46 (GMT)
commit5f78f2116b802d750f701bcaac7c6457bbfe4848 (patch)
tree540435c45e393a8a4fbafe4e2cfe749a9e7efafc
parent860d2037ea55230e83746daa4a7c2f003d854eba (diff)
Gtk.Box instead of vbox
-rw-r--r--roundbox.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundbox.py b/roundbox.py
index 744f621..76c657a 100644
--- a/roundbox.py
+++ b/roundbox.py
@@ -76,7 +76,7 @@ if __name__ == '__main__':
win = Gtk.Window()
win.connect('destroy', Gtk.main_quit)
win.set_default_size(450, 550)
- vbox = Gtk.VBox()
+ vbox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
box1 = RoundBox()
vbox.add(box1)