From d48229472a4bbc6aa53ca42b9fa1403991a56d12 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 --- ChangeLog | 4 ++++ src/Editors/_EditFamily.py | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index 442b8a29b..9cd708a6d 100644 --- a/ChangeLog +++ b/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/src/Editors/_EditFamily.py b/src/Editors/_EditFamily.py index 6167d530a..dbeaeb27f 100644 --- a/src/Editors/_EditFamily.py +++ b/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)