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.
This commit is contained in:
Bryan Schumaker 2011-08-14 10:07:53 -04:00
parent 128415f009
commit f8ed8c4483
1 changed files with 3 additions and 2 deletions

View File

@ -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)