[gnome-shell/wip/carlosg/osk-widgetry-fixes: 1/5] keyboard: Tell keyboard container to expand
- From: Carlos Garnacho <carlosg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/wip/carlosg/osk-widgetry-fixes: 1/5] keyboard: Tell keyboard container to expand
- Date: Tue, 21 Jan 2020 16:57:26 +0000 (UTC)
commit eae532af994b885203a6867d9be571dcc192e5e6
Author: Carlos Garnacho <carlosg gnome org>
Date: Tue Jan 21 15:00:18 2020 +0100
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 4590d49612..7463233e79 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();
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]