2007-10-28 Gary Burton <gary.burton@zen.co.uk>

* src/DisplayTabs/_EnbeddedList.py: Fixed crash when doing a drag and
	drop with an object that was deleted from a list. issue # 1326



svn: r9260
This commit is contained in:
Gary Burton 2007-10-28 16:33:32 +00:00
parent eedaf7a836
commit 953e67aaf5
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-10-28 Gary Burton <gary.burton@zen.co.uk>
* src/DisplayTabs/_EnbeddedList.py: Fixed crash when doing a drag and
drop with an object that was deleted from a list. issue # 1326
2007-10-27 Benny Malengier <benny.malengier@gramps-project.org>
* src/Relationship.py: finish up step and inlaw, expand test routine
Still to add: half-brother recognition, family collapse

View File

@ -199,7 +199,7 @@ class EmbeddedList(ButtonTab):
# if the is same object, we have a move, otherwise,
# it is a standard drag-n-drop
if id(self) == selfid:
if id(self) == selfid and self.get_selected() is not None:
self._move(row_from, row, obj)
else:
self._handle_drag(row, obj)