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:
Florian Müllner 2019-12-20 14:37:31 +01:00
parent 9f7b1bd677
commit fb74394d58

View File

@ -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 });