From e15d8eeb177b5ed97512b7d69121d35906c1344d Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Tue, 21 Jan 2020 16:22:34 +0100 Subject: [PATCH] keyboard: Tell emoji panel container to expand Otherwise the EmojiSelection won't use up available space. Closes: https://gitlab.gnome.org/GNOME/gnome-shell/issues/2131 --- js/ui/keyboard.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/ui/keyboard.js b/js/ui/keyboard.js index 7463233e7..7e7cee21b 100644 --- a/js/ui/keyboard.js +++ b/js/ui/keyboard.js @@ -614,6 +614,7 @@ var EmojiPager = GObject.registerClass({ layout_manager: new Clutter.BinLayout(), reactive: true, clip_to_allocation: true, + y_expand: true, }); this._sections = sections; this._nCols = nCols;