From 7d2be7da774f9554c11a191fb80dce470d97d49e Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Tue, 8 Jul 2025 15:41:01 +0200 Subject: [PATCH] Update file format comment --- novelwriter/core/projectxml.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/novelwriter/core/projectxml.py b/novelwriter/core/projectxml.py index 47ea748e..10395f28 100644 --- a/novelwriter/core/projectxml.py +++ b/novelwriter/core/projectxml.py @@ -441,9 +441,9 @@ class ProjectXMLReader: for xEntry in xItem: if xEntry.tag == "entry": key = xEntry.attrib.get("key", None) - red = checkInt(xEntry.attrib.get("red", 0), 0) # Deprecated in 1.5 R6 - green = checkInt(xEntry.attrib.get("green", 0), 0) # Deprecated in 1.5 R6 - blue = checkInt(xEntry.attrib.get("blue", 0), 0) # Deprecated in 1.5 R6 + red = checkInt(xEntry.attrib.get("red", 0), 0) # Removed in 1.5 R6 + green = checkInt(xEntry.attrib.get("green", 0), 0) # Removed in 1.5 R6 + blue = checkInt(xEntry.attrib.get("blue", 0), 0) # Removed in 1.5 R6 color = xEntry.attrib.get("color") # Added in 1.5 R6 count = checkInt(xEntry.attrib.get("count", 0), 0) shape = xEntry.attrib.get("shape", "")