summaryrefslogtreecommitdiff
path: root/src/settings.h
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2013-07-18 20:52:33 +0000
committerStijn Buys <ingar@osirion.org>2013-07-18 20:52:33 +0000
commit850441d72ad73e6bcf3570e3f62287c28eaead31 (patch)
tree7d6fabb8b2caff0a906dfbe952248f74ef2c93fc /src/settings.h
parent46ad6cc7c4be62c1c3971f56d4d6b09fc26f08c4 (diff)
Solves a bug where the overwrite file warning shows the wrong filename,
adds a visual indication if a sudoku grid has been solved.
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();