1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-06 05:25:41 -05:00

network: eth device speed is not exposed

This commit is contained in:
bbedward
2025-12-02 14:45:28 -05:00
parent db3610fcdb
commit f5aa855125

View File

@@ -407,20 +407,6 @@ Item {
color: Theme.surfaceVariantText
visible: modelData.ip && modelData.ip.length > 0
}
StyledText {
text: "•"
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
visible: modelData.speed && modelData.speed > 0
}
StyledText {
text: modelData.speed ? modelData.speed + " Mbps" : ""
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
visible: modelData.speed && modelData.speed > 0
}
}
}
}