* src/DdTargets.py: added PERSON_LINK_LIST target.
	* src/FamilyView.py: corrected bug when person is droped if there is no current
	family.
	* src/PeopleView.py: enabled dnd of lists of people.
	* src/plugins/ScratchPad.py: support lists of people.


svn: r4308
This commit is contained in:
Richard Taylor
2005-04-06 13:28:51 +00:00
parent 1475a9dfc2
commit 0b6456511e
5 changed files with 90 additions and 24 deletions

View File

@@ -106,6 +106,7 @@ class _DdTargets(object):
self.MEDIAOBJ = _DdType(self,'mediaobj')
self.PERSON_LINK = _DdType(self,'person-link')
self.PERSON_LINK_LIST = _DdType(self,'person-link-list')
self.FAMILY_EVENT = _DdType(self,'fevent')
self.FAMILY_ATTRIBUTE = _DdType(self,'fattr')
@@ -120,7 +121,8 @@ class _DdTargets(object):
self.SOURCEREF,
self.NAME,
self.MEDIAOBJ,
self.PERSON_LINK]
self.PERSON_LINK,
self.PERSON_LINK_LIST]
self.CHILD = _DdType(self,'child')
self.SPOUSE = _DdType(self,'spouce')