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:
parent
7a94d8a920
commit
d48229472a
@ -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>
|
2006-06-21 Alex Roitman <shura@gramps-project.org>
|
||||||
* src/DateEdit.py (DateEditorDialog.__init__): Take care of
|
* src/DateEdit.py (DateEditorDialog.__init__): Take care of
|
||||||
deleting the dialog.
|
deleting the dialog.
|
||||||
|
@ -560,10 +560,14 @@ class EditFamily(EditPrimary):
|
|||||||
person, self.new_father_added)
|
person, self.new_father_added)
|
||||||
|
|
||||||
def new_mother_added(self, person):
|
def new_mother_added(self, person):
|
||||||
|
for i in self.hidden:
|
||||||
|
i.set_sensitive(True)
|
||||||
self.obj.set_mother_handle(person.handle)
|
self.obj.set_mother_handle(person.handle)
|
||||||
self.update_mother(person.handle)
|
self.update_mother(person.handle)
|
||||||
|
|
||||||
def new_father_added(self, person):
|
def new_father_added(self, person):
|
||||||
|
for i in self.hidden:
|
||||||
|
i.set_sensitive(True)
|
||||||
self.obj.set_father_handle(person.handle)
|
self.obj.set_father_handle(person.handle)
|
||||||
self.update_father(person.handle)
|
self.update_father(person.handle)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user