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:
parent
f7620b385a
commit
1f7c99d9fb
@ -1290,7 +1290,10 @@ class Keyboard extends St.BoxLayout {
|
|||||||
this._suggestions = new Suggestions();
|
this._suggestions = new Suggestions();
|
||||||
this.add_child(this._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.add_child(this._aspectContainer);
|
||||||
|
|
||||||
this._emojiSelection = new EmojiSelection();
|
this._emojiSelection = new EmojiSelection();
|
||||||
|
Loading…
Reference in New Issue
Block a user