background: always add content to cache
We currently only add the first instance of a background to the cache. This means if the actor associated with that background is destroyed, the content will be evicted and it will need to get reloaded, even if it's already loaded on another actor. This commit ensures every content gets added to the cache. https://bugzilla.gnome.org/show_bug.cgi?id=696157
This commit is contained in:
parent
cab092aad7
commit
3be489c69e
@ -84,9 +84,9 @@ const BackgroundCache = new Lang.Class({
|
||||
} else {
|
||||
content.load_gradient(params.shadingType, params.color, params.secondColor);
|
||||
}
|
||||
}
|
||||
|
||||
this._patterns.push(content);
|
||||
}
|
||||
|
||||
return content;
|
||||
},
|
||||
@ -165,6 +165,8 @@ const BackgroundCache = new Lang.Class({
|
||||
|
||||
if (params.cancellable && params.cancellable.is_cancelled())
|
||||
content = null;
|
||||
else
|
||||
this._images.push(content);
|
||||
|
||||
if (params.onFinished)
|
||||
params.onFinished(content);
|
||||
|
Loading…
Reference in New Issue
Block a user