feat(network): cleanup and UI polish

This commit is contained in:
Lemmy
2026-03-15 19:49:22 -04:00
parent 44b6ba6c30
commit b9fbe6cd1f
7 changed files with 547 additions and 481 deletions
+2 -2
View File
@@ -84,7 +84,7 @@ Item {
customIconColor: Color.resolveColorKeyOptional(root.iconColorKey)
customTextColor: Color.resolveColorKeyOptional(root.textColorKey)
icon: NetworkService.getIcon()
text: NetworkService.getStatustxt()
text: NetworkService.getStatusText()
autoHide: false
forceOpen: !isBarVertical && root.displayMode === "alwaysShow"
forceClose: isBarVertical || root.displayMode === "alwaysHide" || text === ""
@@ -99,7 +99,7 @@ Item {
if (PanelService.getPanel("networkPanel", screen)?.isPanelOpen) {
return "";
}
return pill.text; // pill.text is exact copy of getStatustxt
return pill.text; // pill.text is exact copy of getStatusText
}
}
}