Remove colour from the non-checkable icon for active/inactive
This commit is contained in:
@@ -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
|
||||
|
||||
##
|
||||
|
||||
@@ -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))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user