1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-07 14:05:38 -05:00

Column alignment fixes

This commit is contained in:
bbedward
2025-07-13 15:40:34 -04:00
parent a1b6c9e791
commit 6145ec2a80

View File

@@ -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