summaryrefslogtreecommitdiff
path: root/src/settings.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/settings.h')
-rw-r--r--src/settings.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/settings.h b/src/settings.h
index 319bcb1..229d67a 100644
--- a/src/settings.h
+++ b/src/settings.h
@@ -22,10 +22,16 @@ public:
return m_colorInputError;
}
+ inline const QColor & colorSolved() const
+ {
+ return m_colorSolved;
+ }
+
private:
QString m_homePath;
QColor m_colorInvalidValue;
QColor m_colorInputError;
+ QColor m_colorSolved;
};
const Settings & globalSettings();