From a326fa737e9eafb42d620a726a19e1e6971be040 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Mon, 19 Feb 2024 19:43:21 +0100 Subject: [PATCH] workspace-indicator: 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/workspace-indicator/extension.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/extensions/workspace-indicator/extension.js b/extensions/workspace-indicator/extension.js index 0f11a5f1..b9d060c0 100644 --- a/extensions/workspace-indicator/extension.js +++ b/extensions/workspace-indicator/extension.js @@ -123,6 +123,8 @@ class WorkspaceThumbnail extends St.Button { child: new Clutter.Actor({ layout_manager: new WorkspaceLayout(), clip_to_allocation: true, + x_expand: true, + y_expand: true, }), });