From 7a0ca128d316544233a10524a724620eef6746d2 Mon Sep 17 00:00:00 2001 From: Ivan Frade Date: Wed, 26 Aug 2009 11:47:17 +0300 Subject: [PATCH] Be sure there is image and thumb Maybe it cannot happen. But a check never hurts --- src/album_art_panel.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/album_art_panel.py b/src/album_art_panel.py index f98feb3..bbc338d 100644 --- a/src/album_art_panel.py +++ b/src/album_art_panel.py @@ -74,8 +74,9 @@ class MussorgskyAlbumArtPanel (hildon.StackableWindow): response = dialog.run () if (response > -1): (img, thumb) = dialog.get_selection () - pixbuf = gtk.gdk.pixbuf_new_from_file_at_size (thumb, 64, 64) - treeview.get_model ().set (it, 1, pixbuf) + if img and thumb: + pixbuf = gtk.gdk.pixbuf_new_from_file_at_size (thumb, 64, 64) + treeview.get_model ().set (it, 1, pixbuf) dialog.destroy () if __name__ == "__main__": -- 1.7.9.5