From 6145ec2a80ed46b4ede56194f6876e47c1dd2ea5 Mon Sep 17 00:00:00 2001 From: bbedward Date: Sun, 13 Jul 2025 15:40:34 -0400 Subject: [PATCH] Column alignment fixes --- Widgets/ProcessListDropdown.qml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Widgets/ProcessListDropdown.qml b/Widgets/ProcessListDropdown.qml index e7a7666c..3acc1d9b 100644 --- a/Widgets/ProcessListDropdown.qml +++ b/Widgets/ProcessListDropdown.qml @@ -245,16 +245,22 @@ PanelWindow { Row { id: columnHeaders Layout.fillWidth: true + anchors.left: parent.left + anchors.leftMargin: 8 + spacing: 8 + // Icon placeholder + Process name Text { text: "Process" font.pixelSize: Theme.fontSizeSmall font.weight: Font.Medium color: Theme.surfaceText opacity: 0.7 - width: 180 + width: Theme.iconSize - 4 + 8 + 150 // icon width + spacing + name width } + Item { width: parent.parent.width - 280 - 16 } // Flexible spacer to match process list (280 from row + 16 for margins) + Text { text: "CPU" font.pixelSize: Theme.fontSizeSmall