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:
		@@ -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)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user