Skip to content

Commit

Permalink
Gtk UI: Fix wrong artwork in podcast settings (bug 1675)
Browse files Browse the repository at this point in the history
  • Loading branch information
thp committed Sep 25, 2012
1 parent 8a2d061 commit baf9d48
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/gpodder/gtkui/desktop/channel.py
Expand Up @@ -131,8 +131,9 @@ def on_btnClearCover_clicked(self, widget):

def cover_download_finished(self, channel, pixbuf):
def set_cover(channel, pixbuf):
self.imgCover.set_from_pixbuf(self.scale_pixbuf(pixbuf))
self.gPodderChannel.show()
if self.channel == channel:
self.imgCover.set_from_pixbuf(self.scale_pixbuf(pixbuf))
self.gPodderChannel.show()

util.idle_add(set_cover, channel, pixbuf)

Expand Down

0 comments on commit baf9d48

Please sign in to comment.