2006-06-21 Don Allingham <don@gramps-project.org>

* src/Editors/_EditFamily.py: re-enable disabled blocks after
	the + is clicked



svn: r6939
This commit is contained in:
Don Allingham 2006-06-21 19:32:50 +00:00
parent 7a94d8a920
commit d48229472a
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2006-06-21 Don Allingham <don@gramps-project.org>
* src/Editors/_EditFamily.py: re-enable disabled blocks after
the + is clicked
2006-06-21 Alex Roitman <shura@gramps-project.org>
* src/DateEdit.py (DateEditorDialog.__init__): Take care of
deleting the dialog.

View File

@ -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)