background: Don't override synchronous load() with an async version
Instead, override the asynchronous version to avoid conflicting with the parent signature. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2040>
This commit is contained in:
parent
2d6f4aabf9
commit
828da18b72
@ -177,7 +177,7 @@ var BackgroundCache = class BackgroundCache {
|
|||||||
|
|
||||||
animation = new Animation({ file: params.file });
|
animation = new Animation({ file: params.file });
|
||||||
|
|
||||||
animation.load(() => {
|
animation.load_async(null, () => {
|
||||||
this._animations[params.settingsSchema] = animation;
|
this._animations[params.settingsSchema] = animation;
|
||||||
|
|
||||||
if (params.onLoaded) {
|
if (params.onLoaded) {
|
||||||
@ -634,11 +634,12 @@ class Animation extends GnomeDesktop.BGSlideShow {
|
|||||||
this.loaded = false;
|
this.loaded = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
load(callback) {
|
// eslint-disable-next-line camelcase
|
||||||
this.load_async(null, () => {
|
load_async(cancellable, callback) {
|
||||||
|
super.load_async(cancellable, () => {
|
||||||
this.loaded = true;
|
this.loaded = true;
|
||||||
if (callback)
|
|
||||||
callback();
|
callback?.();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user