[gnome-shell/wip/carlosg/osk-widgetry-fixes: 1/5] keyboard: Tell keyboard container to expand



commit 63a07f1844743d2fd8cb4d1224f24fc5b39e99e4
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..e2d61d9917 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]