2006-04-30 Don Allingham <don@gramps-project.org>

* src/DataViews.py/_PersonView.py: don't add handles of top level
	objects
	* src/GrampsWidgets.py: handle both types and tuples



svn: r6502
This commit is contained in:
Don Allingham
2006-04-30 23:26:38 +00:00
parent 6937ac022c
commit 2e49a8ab34
3 changed files with 12 additions and 3 deletions

View File

@@ -638,7 +638,8 @@ class PersonView(PageView.PersonNavView):
for path in paths:
node = self.model.on_get_iter(path)
handle = self.model.on_get_value(node, PeopleModel.COLUMN_INT_ID)
mlist.append(handle)
if handle:
mlist.append(handle)
return mlist
def remove_from_person_list(self,person):