* src/EditPerson.py (__init__): Only set update sources if possible
(calls from ChooseParents don't provide the correct parent, but then the full update goes on anyway). * src/ChooseParents.py (mother_list_select_row, father_list_select_row): Comment out auto-selection of parents. svn: r4139
This commit is contained in:
@ -475,7 +475,10 @@ class EditPerson:
|
||||
})
|
||||
|
||||
if self.parent:
|
||||
self.update_sources = self.parent.source_view.build_tree
|
||||
try:
|
||||
self.update_sources = self.parent.source_view.build_tree
|
||||
except AttributeError:
|
||||
self.update_sources = None
|
||||
else:
|
||||
self.update_sources = None
|
||||
|
||||
|
Reference in New Issue
Block a user