Add: a TextColour flag to ignore colour changes from strings

This commit is contained in:
glx
2019-11-26 01:28:03 +01:00
committed by Charles Pigott
parent b769eb30c4
commit 42144ecd56
3 changed files with 3 additions and 2 deletions

View File

@@ -267,6 +267,7 @@ enum TextColour {
TC_IS_PALETTE_COLOUR = 0x100, ///< Colour value is already a real palette colour index, not an index of a StringColour.
TC_NO_SHADE = 0x200, ///< Do not add shading to this text colour.
TC_FORCED = 0x400, ///< Ignore colour changes from strings.
};
DECLARE_ENUM_AS_BIT_SET(TextColour)