diff --git a/src/gui/editors/editmedia.py b/src/gui/editors/editmedia.py index cf11c528d..376494480 100644 --- a/src/gui/editors/editmedia.py +++ b/src/gui/editors/editmedia.py @@ -226,7 +226,7 @@ class EditMedia(EditPrimary): self._setup_notebook_tabs( notebook) notebook.show_all() - self.glade.get_object('vbox').pack_start(notebook, True) + self.glade.get_object('vbox').pack_start(notebook, True, True, 0) def build_menu_names(self, person): return (_('Edit Media Object'), self.get_menu_title()) diff --git a/src/gui/editors/editsource.py b/src/gui/editors/editsource.py index 3e99054b5..2a124fcaa 100644 --- a/src/gui/editors/editsource.py +++ b/src/gui/editors/editsource.py @@ -170,7 +170,7 @@ class EditSource(EditPrimary): self._setup_notebook_tabs(notebook) notebook.show_all() - self.glade.get_object('vbox').pack_start(notebook, True) + self.glade.get_object('vbox').pack_start(notebook, True, True, 0) def build_menu_names(self, source): return (_('Edit Source'), self.get_menu_title()) diff --git a/src/plugins/bookreport.gpr.py b/src/plugins/bookreport.gpr.py index 4c7273562..b1a8034fd 100644 --- a/src/plugins/bookreport.gpr.py +++ b/src/plugins/bookreport.gpr.py @@ -31,7 +31,7 @@ id = 'book', name = _("Book Report"), description = _("Produces a book containing several reports."), version = '1.0', -gramps_target_version = '3.5', +gramps_target_version = '4.0', status = STABLE, fname = 'bookreport.py', authors = ["Alex Roitman"], diff --git a/src/plugins/gramplet/repositorydetails.py b/src/plugins/gramplet/repositorydetails.py index 6ecfc772b..ca16d59b8 100644 --- a/src/plugins/gramplet/repositorydetails.py +++ b/src/plugins/gramplet/repositorydetails.py @@ -45,7 +45,7 @@ class RepositoryDetails(Gramplet): self.name.modify_font(Pango.FontDescription('sans bold 12')) vbox.pack_start(self.name, fill=True, expand=False, padding=7) self.table = Gtk.Table(1, 2) - vbox.pack_start(self.table, fill=True, expand=False) + vbox.pack_start(self.table, fill=True, expand=False, '') self.top.pack_start(vbox, fill=True, expand=False, padding=10) self.top.show_all() return self.top diff --git a/src/plugins/records.gpr.py b/src/plugins/records.gpr.py index 750102b8b..e2471561f 100644 --- a/src/plugins/records.gpr.py +++ b/src/plugins/records.gpr.py @@ -32,7 +32,7 @@ id = 'records', name = _("Records Report"), description = _("Shows some interesting records about people and families"), version = '1.1', -gramps_target_version = '3.5', +gramps_target_version = '4.0', status = STABLE, fname = 'records.py', authors = [u"Reinhard Müller"], @@ -48,7 +48,7 @@ id = 'Records Gramplet', name = _("Records Gramplet"), description = _("Shows some interesting records about people and families"), version = '1.0', -gramps_target_version = '3.5', +gramps_target_version = '4.0', status = STABLE, fname = 'records.py', authors = [u"Reinhard Müller"],