diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 6a936b8a6..da3d1be3c 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,6 @@ +2005-02-24 Alex Roitman + * src/MediaView.py (on_select_row): Add garbage collection call. + 2005-02-23 Don Allingham * src/AddMedia.py: use new find_mime_type_pixbuf instead of find_icon diff --git a/gramps2/src/MediaView.py b/gramps2/src/MediaView.py index 476681d50..9ea28dd8a 100644 --- a/gramps2/src/MediaView.py +++ b/gramps2/src/MediaView.py @@ -27,6 +27,7 @@ #------------------------------------------------------------------------- import string import os +import gc #------------------------------------------------------------------------- # @@ -193,7 +194,8 @@ class MediaView: icon_image = Utils.find_mime_type_pixbuf('text/plain') self.preview.set_from_pixbuf(icon_image) type_name = _('Note') - + gc.collect() + self.mid.set_text(mobj.get_gramps_id()) self.mtype.set_text(type_name) self.mdesc.set_text(mobj.get_description()) @@ -381,7 +383,7 @@ class MediaView: if not node: return handle = store.get_value(node,1) - selection_data.set(selection_data.target, 8, handle) + selection_data.set(selection_data.target, 8, handle) def on_drag_data_received(self,w, context, x, y, data, info, time): import urlparse