From 3de04d3b13f32651deeca828099e356d63128c4a Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Wed, 21 Jun 2006 19:32:50 +0000 Subject: [PATCH] 2006-06-21 Don Allingham * src/Editors/_EditFamily.py: re-enable disabled blocks after the + is clicked svn: r6939 --- gramps2/ChangeLog | 4 ++++ gramps2/src/Editors/_EditFamily.py | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 442b8a29b..9cd708a6d 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,7 @@ +2006-06-21 Don Allingham + * src/Editors/_EditFamily.py: re-enable disabled blocks after + the + is clicked + 2006-06-21 Alex Roitman * src/DateEdit.py (DateEditorDialog.__init__): Take care of deleting the dialog. diff --git a/gramps2/src/Editors/_EditFamily.py b/gramps2/src/Editors/_EditFamily.py index 6167d530a..dbeaeb27f 100644 --- a/gramps2/src/Editors/_EditFamily.py +++ b/gramps2/src/Editors/_EditFamily.py @@ -560,10 +560,14 @@ class EditFamily(EditPrimary): person, self.new_father_added) def new_mother_added(self, person): + for i in self.hidden: + i.set_sensitive(True) self.obj.set_mother_handle(person.handle) self.update_mother(person.handle) def new_father_added(self, person): + for i in self.hidden: + i.set_sensitive(True) self.obj.set_father_handle(person.handle) self.update_father(person.handle)