* src/DataViews/_PersonView.py: fix typo
svn: r7529
This commit is contained in:
parent
4efb75e286
commit
c66bb89f04
@ -1,4 +1,5 @@
|
||||
2006-10-31 Don Allingham <don@gramps-project.org>
|
||||
* src/DataViews/_PersonView.py: fix typo
|
||||
* src/GrampsCfg.py: Fix check box message for adding a family
|
||||
* src/Reorder.py: Allow for reordering of relationships, enhance
|
||||
buttons
|
||||
|
@ -663,13 +663,14 @@ class PersonView(PageView.PersonNavView):
|
||||
self.model.rebuild_data()
|
||||
if not self.model.is_visable(node):
|
||||
continue
|
||||
|
||||
if (not self.model.sname_sub.has_key(top) or
|
||||
len(self.model.sname_sub[top]) == 1):
|
||||
path = self.model.on_get_path(top)
|
||||
pnode = self.model.get_iter(path)
|
||||
self.model.row_inserted(path,pnode)
|
||||
path = self.model.on_get_path(node)
|
||||
pnode = self.model.on_get_iter(path)
|
||||
pnode = self.model.get_iter(path)
|
||||
self.model.row_inserted(path, pnode)
|
||||
else:
|
||||
self.dirty = True
|
||||
|
Loading…
Reference in New Issue
Block a user