background: fix typo updating images for animated background

We must remove the old image from the cache, not the new one.

This was causing a leak of old (and expensive) background
images, and was causing errors at the end of animations, trying
to destroy the animated background.
This commit is contained in:
Giovanni Campagna 2014-06-26 18:25:14 +02:00
parent d58be565a1
commit b742b1eed2

View File

@ -448,7 +448,7 @@ const Background = new Lang.Class({
let image = this._images[index];
if (image.content)
this._cache.removeImageContent(content);
this._cache.removeImageContent(image.content);
image.content = content;
this._watchCacheFile(filename);
},