From 1f7c99d9fb02ccde9fead514d009ef674cff90bb Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Tue, 21 Jan 2020 15:00:18 +0100 Subject: [PATCH] keyboard: Tell keyboard container to expand Otherwise the KeyContainer won't use up available space. Closes: https://gitlab.gnome.org/GNOME/gnome-shell/issues/2142 --- js/ui/keyboard.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/js/ui/keyboard.js b/js/ui/keyboard.js index 4590d4961..7463233e7 100644 --- a/js/ui/keyboard.js +++ b/js/ui/keyboard.js @@ -1290,7 +1290,10 @@ class Keyboard extends St.BoxLayout { this._suggestions = new Suggestions(); this.add_child(this._suggestions); - this._aspectContainer = new AspectContainer({ layout_manager: new Clutter.BinLayout() }); + this._aspectContainer = new AspectContainer({ + layout_manager: new Clutter.BinLayout(), + y_expand: true, + }); this.add_child(this._aspectContainer); this._emojiSelection = new EmojiSelection();