diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index b69ce9dda..0fa393d6f 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -9,6 +9,8 @@ * src/ImageSelect.py (add_thumbnail, on_delete_media_clicked): Identify canvas items by MediaRef instance, not by the handle of the referred MediaObject. + * src/MediaView.py (on_drag_drop): Remove drag_get_data() call + as it was calling extraneous 'drag-data-received' signal. 2005-05-19 Don Allingham * src/DisplayModels.py: remove place column diff --git a/gramps2/src/MediaView.py b/gramps2/src/MediaView.py index 81f009722..83fd10732 100644 --- a/gramps2/src/MediaView.py +++ b/gramps2/src/MediaView.py @@ -366,7 +366,6 @@ class MediaView: def on_drag_drop(self, tree, context, x, y, time): self.list.emit_stop_by_name('drag-drop') - self.list.drag_get_data(context,context.targets[-1],time) return 1 def on_drag_begin(self,obj,context):