Remove colour from the non-checkable icon for active/inactive

This commit is contained in:
Veronica Berglyd Olsen
2025-01-11 00:30:50 +01:00
parent a54a5b3d55
commit c3c24d5533
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -355,7 +355,7 @@ class NWItem:
icon = SHARED.theme.getIcon(key, color)
else:
text = ""
icon = SHARED.theme.getIcon("noncheckable", "orange")
icon = SHARED.theme.getIcon("noncheckable")
return text, icon
##
+1 -1
View File
@@ -241,7 +241,7 @@ class GuiItemDetails(QWidget):
else:
self.labelIcon.setPixmap(SHARED.theme.getPixmap("unchecked", (iPx, iPx), "red"))
else:
self.labelIcon.setPixmap(SHARED.theme.getPixmap("noncheckable", (iPx, iPx), "orange"))
self.labelIcon.setPixmap(SHARED.theme.getPixmap("noncheckable", (iPx, iPx)))
self.labelData.setText(elide(nwItem.itemName, 100))