From c3c24d5533b90aa757310e148d109f66a4c072d4 Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Sat, 11 Jan 2025 00:30:50 +0100 Subject: [PATCH] Remove colour from the non-checkable icon for active/inactive --- novelwriter/core/item.py | 2 +- novelwriter/gui/itemdetails.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/novelwriter/core/item.py b/novelwriter/core/item.py index cc253fe2..5ed0417e 100644 --- a/novelwriter/core/item.py +++ b/novelwriter/core/item.py @@ -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 ## diff --git a/novelwriter/gui/itemdetails.py b/novelwriter/gui/itemdetails.py index 72ecb701..d77e4f2c 100644 --- a/novelwriter/gui/itemdetails.py +++ b/novelwriter/gui/itemdetails.py @@ -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))