From 8a3aafc69f0f005a0a689b7d859d0ad32df3a639 Mon Sep 17 00:00:00 2001 From: Lysec Date: Fri, 27 Mar 2026 15:18:44 +0100 Subject: [PATCH] fix(ProfileCard): add elide to GECOS name --- Modules/Cards/ProfileCard.qml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Modules/Cards/ProfileCard.qml b/Modules/Cards/ProfileCard.qml index 4054f3b75..2c49613ee 100644 --- a/Modules/Cards/ProfileCard.qml +++ b/Modules/Cards/ProfileCard.qml @@ -36,12 +36,17 @@ NBox { ColumnLayout { Layout.fillWidth: true + Layout.minimumWidth: 0 spacing: Style.marginXXS NText { + Layout.fillWidth: true + Layout.minimumWidth: 0 text: HostService.displayName font.weight: Style.fontWeightBold } NText { + Layout.fillWidth: true + Layout.minimumWidth: 0 text: I18n.tr("system.uptime", { "uptime": uptimeText }) @@ -52,6 +57,7 @@ NBox { RowLayout { spacing: Style.marginS + Layout.fillWidth: false Layout.alignment: Qt.AlignRight | Qt.AlignVCenter Item { Layout.fillWidth: true