From 9c2da01a9569d566f476ff4756b3509a3e1f0510 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sat, 16 Dec 2023 23:57:48 +0100 Subject: [PATCH] userWidget: Expand child MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit More fallout from commit c290a38730eb2 … Close https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/7264 Part-of: --- js/ui/userWidget.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/ui/userWidget.js b/js/ui/userWidget.js index 892d0bd87..1fcde34e4 100644 --- a/js/ui/userWidget.js +++ b/js/ui/userWidget.js @@ -90,6 +90,8 @@ class Avatar extends St.Bin { this.child = new St.Icon({ icon_name: 'avatar-default-symbolic', icon_size: this._iconSize, + x_expand: true, + y_expand: true, }); } }