fix wifi disconnected icon
This commit is contained in:
@@ -20,10 +20,11 @@ Item {
|
||||
spacing: Theme.spacing
|
||||
|
||||
Text {
|
||||
text: SysStats.iface.startsWith("wl") ? Icons.wifi : Icons.ethernet
|
||||
text: SysStats.iface === "" ? Icons.netOff
|
||||
: SysStats.iface.startsWith("wl") ? Icons.wifi : Icons.ethernet
|
||||
font.family: Theme.monoFont
|
||||
font.pixelSize: Theme.fontSize + 1
|
||||
color: Theme.sky
|
||||
color: SysStats.iface === "" ? Theme.overlay : Theme.sky
|
||||
Layout.alignment: Qt.AlignVCenter
|
||||
}
|
||||
|
||||
@@ -127,10 +128,11 @@ Item {
|
||||
spacing: Theme.spacing
|
||||
|
||||
Text {
|
||||
text: SysStats.iface.startsWith("wl") ? Icons.wifi : Icons.ethernet
|
||||
text: SysStats.iface === "" ? Icons.netOff
|
||||
: SysStats.iface.startsWith("wl") ? Icons.wifi : Icons.ethernet
|
||||
font.family: Theme.monoFont
|
||||
font.pixelSize: Theme.fontSize + 1
|
||||
color: Theme.sky
|
||||
color: SysStats.iface === "" ? Theme.overlay : Theme.sky
|
||||
}
|
||||
Text {
|
||||
text: "Network by process"
|
||||
|
||||
Reference in New Issue
Block a user