From 9c8c48c5eeaa26401dd29d773d733090501ff604 Mon Sep 17 00:00:00 2001 From: Zacharias-Brohn Date: Tue, 3 Mar 2026 19:27:45 +0100 Subject: [PATCH] window title width fixed --- Modules/WindowTitle.qml | 1 - 1 file changed, 1 deletion(-) diff --git a/Modules/WindowTitle.qml b/Modules/WindowTitle.qml index ddde0ae..68de9db 100644 --- a/Modules/WindowTitle.qml +++ b/Modules/WindowTitle.qml @@ -14,7 +14,6 @@ Item { // readonly property int maxWidth: 300 readonly property int maxWidth: { const otherModules = bar.children.filter(c => c.enabled && c.id && c.item !== this && c.id !== "spacer"); - otherModules.forEach(m => console.log(m.id, m.item)); const otherWidth = otherModules.reduce((acc, curr) => { return acc + (curr.item?.nonAnimWidth ?? curr.width ?? 0); }, 0);