ui: Don't use Clutter.Group
It is deprecated use Clutter.Actor instead. https://bugzilla.gnome.org/show_bug.cgi?id=694441
This commit is contained in:
@@ -166,8 +166,8 @@ const WorkspaceThumbnail = new Lang.Class({
|
||||
style_class: 'workspace-thumbnail' });
|
||||
this.actor._delegate = this;
|
||||
|
||||
this._contents = new Clutter.Group();
|
||||
this.actor.add_actor(this._contents);
|
||||
this._contents = new Clutter.Actor();
|
||||
this.actor.add_child(this._contents);
|
||||
|
||||
this.actor.connect('destroy', Lang.bind(this, this._onDestroy));
|
||||
|
||||
|
Reference in New Issue
Block a user