From f8ed8c448321f820b93da6737943fc462eb0ef3c Mon Sep 17 00:00:00 2001 From: Bryan Schumaker Date: Sun, 14 Aug 2011 10:07:53 -0400 Subject: [PATCH] Don't set artwork Either setting artwork or resizing artwork was causing an annoying crash. I disable setting artwork for now so the crashes will stop. --- ocarina/callbacks.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ocarina/callbacks.py b/ocarina/callbacks.py index 792a3cf0..0388ce9d 100644 --- a/ocarina/callbacks.py +++ b/ocarina/callbacks.py @@ -42,8 +42,9 @@ gobject.signal_new("get_art", gobject.GObject, gobject.SIGNAL_RUN_LAST, def on_get_art_helper(obj, id, path): if id == libsaria.sources.get_cur_id(): - footer.set_art(path) - window.set_icon(path) + #footer.set_art(path) + #window.set_icon(path) + pass on_get_art_obj = gobject.GObject() on_get_art_obj.connect("get_art", on_get_art_helper)