From fb74394d58349f6f85c6058043013b3fdc45fbdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 20 Dec 2019 14:37:31 +0100 Subject: [PATCH] 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 --- js/ui/keyboard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/keyboard.js b/js/ui/keyboard.js index 3d8e84f56..b4406d724 100644 --- a/js/ui/keyboard.js +++ b/js/ui/keyboard.js @@ -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 });