keyboard: Stop accessing deprecated actor property
Commit 3d3dca4aa2
turned EmojiPager into a Clutter.Actor subclass,
but one place slipped through that still accesses it through .actor.
https://gitlab.gnome.org/GNOME/gnome-shell/issues/2060
This commit is contained in:
parent
9f7b1bd677
commit
fb74394d58
@ -894,7 +894,7 @@ var EmojiSelection = class EmojiSelection {
|
||||
this._emojiPager.connect('emoji', (pager, str) => {
|
||||
this.emit('emoji-selected', str);
|
||||
});
|
||||
this.actor.add(this._emojiPager.actor, { expand: true });
|
||||
this.actor.add(this._emojiPager, { expand: true });
|
||||
|
||||
this._pageIndicator = new PageIndicators.PageIndicators(false);
|
||||
this.actor.add(this._pageIndicator, { expand: true, x_fill: false, y_fill: false });
|
||||
|
Loading…
Reference in New Issue
Block a user