diff --git a/ChangeLog b/ChangeLog index 6a16df854..7cede886c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2005-04-04 Don Allingham + * src/MedaiView.py: pass handle instead of GRAMPS ID during drag-n-drop + 2005-04-01 Richard Taylor * src/GrampsDBCallback.py: Don't check callbacks if the dict is empty. diff --git a/src/MediaView.py b/src/MediaView.py index db9b7b0ea..a9c91fc38 100644 --- a/src/MediaView.py +++ b/src/MediaView.py @@ -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):