From a286d67779c88849ab6ecfa5611ff3afe7ac3b04 Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Thu, 18 Nov 2021 09:51:37 +0100 Subject: [PATCH] add "4" key to metadata.xml --- src/librssguard/miscellaneous/skinfactory.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/librssguard/miscellaneous/skinfactory.h b/src/librssguard/miscellaneous/skinfactory.h index 72796dc35..d129f3e8f 100644 --- a/src/librssguard/miscellaneous/skinfactory.h +++ b/src/librssguard/miscellaneous/skinfactory.h @@ -12,9 +12,17 @@ struct RSSGUARD_DLLSPEC Skin { enum class PaletteColors { + // Used to highlight foreground of some interesting articles. Highlight = 1, + + // Foreground color of errorneous entries. Error = 2, - Allright = 3 + + // OK-ish color. + Allright = 3, + + // Foreground color when item is highlighted/selected. + HighlightedError = 4 }; QString m_baseName;