controlcenter: truncating interface names if too long

This commit is contained in:
ATMDA 2025-11-11 16:15:10 -05:00
parent e613ab81cc
commit bcb2bd494a
2 changed files with 4 additions and 0 deletions

View file

@ -122,6 +122,8 @@ ColumnLayout {
StyledText {
Layout.fillWidth: true
elide: Text.ElideRight
maximumLineCount: 1
text: modelData.interface || qsTr("Unknown")
}

View file

@ -149,6 +149,8 @@ ColumnLayout {
StyledText {
Layout.fillWidth: true
elide: Text.ElideRight
maximumLineCount: 1
text: modelData.ssid || qsTr("Unknown")
}