controlcenter: moved connection status/security type in networking

This commit is contained in:
ATMDA 2025-11-17 08:22:36 -05:00
parent 8c84f670e6
commit 4a7c2dbdd5

View file

@ -215,6 +215,11 @@ Item {
}
}
ColumnLayout {
Layout.fillWidth: true
spacing: 0
StyledText {
Layout.fillWidth: true
elide: Text.ElideRight
@ -224,10 +229,13 @@ Item {
}
StyledText {
Layout.fillWidth: true
text: modelData.connected ? qsTr("Connected") : qsTr("Disconnected")
color: modelData.connected ? Colours.palette.m3primary : Colours.palette.m3outline
font.pointSize: Appearance.font.size.small
font.weight: modelData.connected ? 500 : 400
elide: Text.ElideRight
}
}
StyledRect {
@ -362,6 +370,11 @@ Item {
}
}
ColumnLayout {
Layout.fillWidth: true
spacing: 0
StyledText {
Layout.fillWidth: true
elide: Text.ElideRight
@ -371,6 +384,7 @@ Item {
}
RowLayout {
Layout.fillWidth: true
spacing: Appearance.spacing.smaller
MaterialIcon {
@ -381,6 +395,7 @@ Item {
}
StyledText {
Layout.fillWidth: true
text: {
if (!modelData) return qsTr("Open");
if (modelData.active) return qsTr("Connected");
@ -393,6 +408,8 @@ Item {
color: (modelData && modelData.active) ? Colours.palette.m3primary : Colours.palette.m3outline
font.pointSize: Appearance.font.size.small
font.weight: (modelData && modelData.active) ? 500 : 400
elide: Text.ElideRight
}
}
}