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)