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
This commit is contained in:
Carlos Garnacho 2020-01-21 15:00:18 +01:00 committed by Florian Müllner
parent f7620b385a
commit 1f7c99d9fb

View File

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