From 1992256b02637ea71dde8a288527dc0e6fd78d49 Mon Sep 17 00:00:00 2001 From: Benny Malengier Date: Mon, 23 Jul 2012 21:20:04 +0000 Subject: [PATCH] GTK3 conversion of the gramplet svn: r20059 --- src/plugins/gramplet/placedetails.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/plugins/gramplet/placedetails.py b/src/plugins/gramplet/placedetails.py index 7e9f826a2..ada846542 100644 --- a/src/plugins/gramplet/placedetails.py +++ b/src/plugins/gramplet/placedetails.py @@ -46,11 +46,11 @@ class PlaceDetails(Gramplet): self.title = Gtk.Label() self.title.set_alignment(0, 0) self.title.modify_font(Pango.FontDescription('sans bold 12')) - vbox.pack_start(self.title, fill=True, expand=False, padding=7) + vbox.pack_start(self.title, False, True, 7) self.table = Gtk.Table(1, 2) - vbox.pack_start(self.table, fill=True, expand=False) - self.top.pack_start(self.photo, fill=True, expand=False, padding=5) - self.top.pack_start(vbox, fill=True, expand=False, padding=10) + vbox.pack_start(self.table, False, True, 0) + self.top.pack_start(self.photo, False, True, 5) + self.top.pack_start(vbox, False, True, 10) self.top.show_all() return self.top