From b00f5c4604b3a79feb7c4d29245a5cf38577e49a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Mon, 19 Feb 2024 19:59:29 +0100 Subject: [PATCH] window-list: Fix window previews St.Bin no longer expands its child automatically. Unless do we do explicitly, the preview actor will be allocated with a size of 0x0. Part-of: --- extensions/window-list/workspaceIndicator.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/extensions/window-list/workspaceIndicator.js b/extensions/window-list/workspaceIndicator.js index f3eff1c5..22972240 100644 --- a/extensions/window-list/workspaceIndicator.js +++ b/extensions/window-list/workspaceIndicator.js @@ -117,6 +117,8 @@ class WorkspaceThumbnail extends St.Button { child: new Clutter.Actor({ layout_manager: new WorkspaceLayout(), clip_to_allocation: true, + x_expand: true, + y_expand: true, }), });