Skip to content

Commit 4a70607

Browse files
Port to Gtk3 : Fix TypeError
TypeError: Gtk.Box.pack_start() takes exactly 5 arguments (2 given)
1 parent 1c91d84 commit 4a70607

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dobject/groupthink/sugar_tools.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def __init__(self, handle):
9191

9292
v = Gtk.VBox()
9393
self.startup_label = Gtk.Label(self.message)
94-
v.pack_start(self.startup_label)
94+
v.pack_start(self.startup_label, True, True, 0)
9595
Window.set_canvas(self, v)
9696
self.show_all()
9797

0 commit comments

Comments
 (0)