* src/MedaiView.py: pass handle instead of GRAMPS ID during drag-n-drop

svn: r4294
This commit is contained in:
Don Allingham 2005-04-04 19:53:21 +00:00
parent 49a6b5aca3
commit 44e34592bc
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2005-04-04 Don Allingham <don@gramps-project.org>
* src/MedaiView.py: pass handle instead of GRAMPS ID during drag-n-drop
2005-04-01 Richard Taylor <rjt-gramps@thegrindstone.me.uk>
* src/GrampsDBCallback.py: Don't check callbacks if the dict is empty.

View File

@ -347,7 +347,7 @@ class MediaView:
store,node = self.selection.get_selected()
if not node:
return
handle = store.get_value(node,1)
handle = store.get_value(node,_HANDLE_COL)
selection_data.set(selection_data.target, 8, handle)
def on_drag_data_received(self,w, context, x, y, data, info, time):