js: Stop using ClutterContainer API
These have been long deprecated over in clutter, and (via several vtables) simply forward the call to the equivalent ClutterActor methods Save ourselves the hassle and just use ClutterActor methods directly Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3010>
This commit is contained in:
@ -82,9 +82,9 @@ export class Ripples {
|
||||
throw new Error('Ripples already added');
|
||||
|
||||
this._stage = stage;
|
||||
this._stage.add_actor(this._ripple1);
|
||||
this._stage.add_actor(this._ripple2);
|
||||
this._stage.add_actor(this._ripple3);
|
||||
this._stage.add_child(this._ripple1);
|
||||
this._stage.add_child(this._ripple2);
|
||||
this._stage.add_child(this._ripple3);
|
||||
}
|
||||
|
||||
playAnimation(x, y) {
|
||||
|
Reference in New Issue
Block a user