From 38d9026bc7c06b82265f0ec11bbbc09ce0bf62d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 15 Dec 2023 20:54:00 +0100 Subject: [PATCH] lookingGlass: Set expand of DebugFlags children Since commit c290a38730eb2a, St.Bin respects the child's expand properties instead of basing expansion on the alignment. Commit b02800f8 updated a number of callers to prepare for the change, but the "Flags" tab in looking glass was missed. Part-of: --- js/ui/lookingGlass.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/lookingGlass.js b/js/ui/lookingGlass.js index 7414a3058..ff44c2728 100644 --- a/js/ui/lookingGlass.js +++ b/js/ui/lookingGlass.js @@ -1067,7 +1067,7 @@ const DebugFlag = GObject.registerClass({ GTypeFlags: GObject.TypeFlags.ABSTRACT, }, class DebugFlag extends St.Button { _init(label) { - const box = new St.BoxLayout(); + const box = new St.BoxLayout({x_expand: true}); const flagLabel = new St.Label({ text: label,