~mvo/software-center/lp1043752

« back to all changes in this revision

Viewing changes to softwarecenter/view/widgets/animatedimage.py

  • Committer: Michael Vogt
  • Date: 2009-09-25 15:30:34 UTC
  • Revision ID: michael.vogt@ubuntu.com-20090925153034-vf6oqy9j66fc6jcz
renamed to "Ubuntu Software Center" and software-center (LP: #436648)

Show diffs side-by-side

added added

removed removed

Lines of Context:
114
114
    elif os.path.exists("./data"):
115
115
        datadir = "./data"
116
116
    else:
117
 
        datadir = "/usr/share/software-store"
 
117
        datadir = "/usr/share/software-center"
118
118
 
119
 
    image = AnimatedImage(datadir+"/icons/32x32/status/software-store-progress-*.png")
120
 
    image1 = AnimatedImage(datadir+"/icons/32x32/status/software-store-progress-*.png")
 
119
    image = AnimatedImage(datadir+"/icons/32x32/status/software-center-progress-*.png")
 
120
    image1 = AnimatedImage(datadir+"/icons/32x32/status/software-center-progress-*.png")
121
121
    image1.start()
122
 
    image2 = AnimatedImage(datadir+"/icons/32x32/status/software-store-progress-01.png")
123
 
    pixbuf = gtk.gdk.pixbuf_new_from_file(datadir+"/icons/32x32/status/software-store-progress-07.png")
 
122
    image2 = AnimatedImage(datadir+"/icons/32x32/status/software-center-progress-01.png")
 
123
    pixbuf = gtk.gdk.pixbuf_new_from_file(datadir+"/icons/32x32/status/software-center-progress-07.png")
124
124
    image3 = AnimatedImage(pixbuf)
125
125
    image3.show()
126
126