~saviq/elisa/subtitle_chardet

« back to all changes in this revision

Viewing changes to elisa-plugins/elisa/plugins/database/tvshows_controllers.py

  • Committer: Olivier Tilloy
  • Author(s): Peter Julian Albert Cock
  • Date: 2010-01-29 12:00:22 UTC
  • Revision ID: olivier@fluendo.com-20100129120022-6cx6w4dadd7xjmu0
Fix entering a TV episode's synopsis screen when no poster is available.

Show diffs side-by-side

added added

removed removed

Lines of Context:
230
230
 
231
231
        def set_poster(result):
232
232
            def _set_poster(thumbnail_path):
 
233
                if not thumbnail_path:
 
234
                    return None
233
235
                artwork = self.info_screen.left_panel.artwork
234
236
                return artwork.foreground.set_from_file_deferred(thumbnail_path)
235
237