summaryrefslogtreecommitdiff
path: root/modules/controlcenter/ethernet/EthernetSettings.qml
diff options
context:
space:
mode:
authorATMDA <atdma2600@gmail.com>2025-11-10 11:51:43 -0500
committerATMDA <atdma2600@gmail.com>2025-11-10 11:51:43 -0500
commit817156aec079852141d52d484dd14eec3fa0a88e (patch)
tree33ffa5bd9aa5611c05661202b54489d25335e513 /modules/controlcenter/ethernet/EthernetSettings.qml
parentcontrolcenter: ethernet panel (debug) (diff)
downloadcaelestia-shell-817156aec079852141d52d484dd14eec3fa0a88e.tar.gz
caelestia-shell-817156aec079852141d52d484dd14eec3fa0a88e.tar.bz2
caelestia-shell-817156aec079852141d52d484dd14eec3fa0a88e.zip
controlcenter: polished ethernet panel
Diffstat (limited to 'modules/controlcenter/ethernet/EthernetSettings.qml')
-rw-r--r--modules/controlcenter/ethernet/EthernetSettings.qml50
1 files changed, 0 insertions, 50 deletions
diff --git a/modules/controlcenter/ethernet/EthernetSettings.qml b/modules/controlcenter/ethernet/EthernetSettings.qml
index b780b55..33b1449 100644
--- a/modules/controlcenter/ethernet/EthernetSettings.qml
+++ b/modules/controlcenter/ethernet/EthernetSettings.qml
@@ -81,56 +81,6 @@ ColumnLayout {
}
}
}
-
- StyledText {
- Layout.topMargin: Appearance.spacing.large
- text: qsTr("Debug Info")
- font.pointSize: Appearance.font.size.larger
- font.weight: 500
- }
-
- StyledRect {
- Layout.fillWidth: true
- implicitHeight: debugInfo.implicitHeight + Appearance.padding.large * 2
-
- radius: Appearance.rounding.normal
- color: Colours.tPalette.m3surfaceContainer
-
- ColumnLayout {
- id: debugInfo
-
- anchors.left: parent.left
- anchors.right: parent.right
- anchors.verticalCenter: parent.verticalCenter
- anchors.margins: Appearance.padding.large
-
- spacing: Appearance.spacing.small / 2
-
- StyledText {
- text: qsTr("Process running: %1").arg(Network.ethernetProcessRunning ? "Yes" : "No")
- font.pointSize: Appearance.font.size.small
- }
-
- StyledText {
- text: qsTr("List length: %1").arg(Network.ethernetDevices.length)
- font.pointSize: Appearance.font.size.small
- }
-
- StyledText {
- text: qsTr("Device count: %1").arg(Network.ethernetDeviceCount)
- font.pointSize: Appearance.font.size.small
- }
-
- StyledText {
- Layout.topMargin: Appearance.spacing.normal
- text: qsTr("Debug: %1").arg(Network.ethernetDebugInfo || "No info")
- font.pointSize: Appearance.font.size.small
- color: Colours.palette.m3outline
- wrapMode: Text.Wrap
- Layout.maximumWidth: parent.width
- }
- }
- }
}