From 3929dd86bcb64ea192474cfeef5fa2827d258801 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Mon, 27 Jan 2025 19:59:38 +0100 Subject: [PATCH] workspace-indicator: Set BoxLayout orientation Use the new `orientation` property instead of `vertical`, as the latter is deprecated. Part-of: --- extensions/workspace-indicator/workspaceIndicator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/workspace-indicator/workspaceIndicator.js b/extensions/workspace-indicator/workspaceIndicator.js index 9f54acbb..0e92fd74 100644 --- a/extensions/workspace-indicator/workspaceIndicator.js +++ b/extensions/workspace-indicator/workspaceIndicator.js @@ -132,7 +132,7 @@ class WorkspaceThumbnail extends St.Button { const box = new St.BoxLayout({ style_class: 'workspace-box', y_expand: true, - vertical: true, + orientation: Clutter.Orientation.VERTICAL, }); this.set_child(box);