From dddec675d23355f892c6426ce198682ad7ef1f76 Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Thu, 29 Jan 2026 19:58:51 -0500 Subject: [PATCH 1/2] tweak: separate window title and class update transitions --- modules/bar/popouts/ActiveWindow.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/bar/popouts/ActiveWindow.qml b/modules/bar/popouts/ActiveWindow.qml index 673e52f..7c1b25c 100644 --- a/modules/bar/popouts/ActiveWindow.qml +++ b/modules/bar/popouts/ActiveWindow.qml @@ -148,7 +148,7 @@ Item { Behavior on text { Anim { - target: names + target: title property: "opacity" from: 0 to: 1 @@ -157,6 +157,7 @@ Item { } CustomText { + id: cls Layout.fillWidth: true text: toplevel?.lastIpcObject.class ?? "" font.pointSize: Config.font.size.small @@ -165,7 +166,7 @@ Item { Behavior on text { Anim { - target: names + target: cls property: "opacity" from: 0 to: 1 From 03d8b5983e851fb6e4b87b8bdc932162bdb2e5ae Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Thu, 29 Jan 2026 19:59:15 -0500 Subject: [PATCH 2/2] tweak: update unknown workspace display text --- modules/bar/popouts/ActiveWindow.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/bar/popouts/ActiveWindow.qml b/modules/bar/popouts/ActiveWindow.qml index 7c1b25c..a8afc95 100644 --- a/modules/bar/popouts/ActiveWindow.qml +++ b/modules/bar/popouts/ActiveWindow.qml @@ -216,7 +216,7 @@ Item { if (root.uiState.workspaces.get(i).workspace === root.toplevel?.workspace) return qsTr("Workspace: %1").arg(i + 1) } - return qsTr("Workspace unknown") + return qsTr("Workspace: unknown") } }