Update test coverage

This commit is contained in:
Veronica Berglyd Olsen
2025-06-13 21:37:31 +02:00
parent e3eea2628a
commit 9384b8a6b9
5 changed files with 42 additions and 13 deletions
+1 -4
View File
@@ -192,10 +192,7 @@ class NWStatus:
def refreshIcons(self) -> None:
"""Refresh all icons."""
for entry in self._store.values():
if entry.theme != CUSTOM_COL:
print("<", entry.color.name(QColor.NameFormat.HexRgb))
entry.color = SHARED.theme.parseColor(entry.theme)
print(">", entry.color.name(QColor.NameFormat.HexRgb))
entry.color = SHARED.theme.parseColor(entry.theme)
entry.icon = NWStatus.createIcon(self._height, entry.color, entry.shape)
return