~joshuascotton/entertainer/pluginsV2

« back to all changes in this revision

Viewing changes to entertainerlib/frontend/gui/tabs/video_clips_tab.py

  • Committer: Paul Hummer
  • Date: 2008-10-12 17:23:21 UTC
  • mfrom: (282.1.6 texture)
  • Revision ID: paul@ubuntu.com-20081012172321-aius6ly9elmbvu31
clutter.Texture handling has been improved

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
        self.clips_menu.set_row_count(3)
99
99
        self.clips_menu.set_orientation(self.clips_menu.VERTICAL)
100
100
 
101
 
        # Default texture
102
 
        default_cover = clutter.Texture()
103
 
        pix_buffer = gtk.gdk.pixbuf_new_from_file(
104
 
            self.theme.getImage("default_movie_art"))
105
 
        default_cover.set_pixbuf(pix_buffer)
106
 
 
107
101
        clips = self.library.get_video_clips()
108
102
        for clip in clips:
109
103
            pix_buffer = gtk.gdk.pixbuf_new_from_file(clip.get_thumbnail_url())