* src/FamilyView.py: fix reordering of children

* src/ChooseParents.py: get filters working again
* src/AddSpouse.py: update display after addition of person
* src/Utils.py: new id generation algorithm


svn: r3245
This commit is contained in:
Don Allingham
2004-06-30 04:06:10 +00:00
parent 29d18998d1
commit 3421c1971a
5 changed files with 78 additions and 19 deletions

View File

@ -1324,6 +1324,9 @@ class FamilyView:
_("Children must be ordered by their birth dates."))
return
self.family.set_child_id_list(list)
trans = self.parent.db.start_transaction()
self.parent.db.commit_family(self.family,trans)
self.parent.db.add_transaction(trans,_('Reorder children'))
self.display_marriage(self.family)
def drag_data_get(self,widget, context, sel_data, info, time):