diff --git a/novelwriter/assets/icons/typicons_dark/typ_tick.svg b/novelwriter/assets/icons/typicons_dark/typ_tick.svg
deleted file mode 100644
index 84383114..00000000
--- a/novelwriter/assets/icons/typicons_dark/typ_tick.svg
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
diff --git a/novelwriter/assets/icons/typicons_light/typ_tick.svg b/novelwriter/assets/icons/typicons_light/typ_tick.svg
deleted file mode 100644
index 1c24677a..00000000
--- a/novelwriter/assets/icons/typicons_light/typ_tick.svg
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
diff --git a/novelwriter/gui/projtree.py b/novelwriter/gui/projtree.py
index b80a6352..0055340a 100644
--- a/novelwriter/gui/projtree.py
+++ b/novelwriter/gui/projtree.py
@@ -951,10 +951,13 @@ class GuiProjectTree(QTreeWidget):
trItem.setToolTip(self.C_STATUS, itemStatus)
if nwItem.isFileType():
- iconName = "check" if nwItem.isActive else "cross"
+ iconName = "checked" if nwItem.isActive else "unchecked"
toolTip = self._lblActive if nwItem.isActive else self._lblInactive
- trItem.setIcon(self.C_ACTIVE, self.mainTheme.getIcon(iconName))
trItem.setToolTip(self.C_ACTIVE, toolTip)
+ else:
+ iconName = "noncheckable"
+
+ trItem.setIcon(self.C_ACTIVE, self.mainTheme.getIcon(iconName))
if self.mainConf.emphLabels and nwItem.isDocumentLayout():
trFont = trItem.font(self.C_NAME)
diff --git a/novelwriter/gui/theme.py b/novelwriter/gui/theme.py
index 93c26440..570b06b2 100644
--- a/novelwriter/gui/theme.py
+++ b/novelwriter/gui/theme.py
@@ -448,9 +448,9 @@ class GuiIcons:
"view_editor", "view_novel", "view_outline",
# General Button Icons
- "add", "backward", "bookmark", "check", "close", "cross", "down", "edit", "forward",
- "maximise", "menu", "minimise", "reference", "refresh", "remove", "search_replace",
- "search", "settings", "up",
+ "add", "backward", "bookmark", "checked", "close", "cross", "down", "edit", "forward",
+ "maximise", "menu", "minimise", "noncheckable", "reference", "refresh", "remove",
+ "search_replace", "search", "settings", "unchecked", "up",
# Switches
"sticky-on", "sticky-off",