summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Günther <tom@toms-cafe.de>2008-03-16 18:56:36 +0100
committerThomas Günther <tom@toms-cafe.de>2008-03-16 18:56:36 +0100
commitbaa63378b3de16c365255f29a3431488cf6656b3 (patch)
tree31c68432a89feabdf9a7416edbd8f5c61540e473
parent1fb307a1eb363d08e847dcef8433fd0a537ee8b8 (diff)
downloadvdr-plugin-sudoku-baa63378b3de16c365255f29a3431488cf6656b3.tar.gz
vdr-plugin-sudoku-baa63378b3de16c365255f29a3431488cf6656b3.tar.bz2
Changed the background color of marked cells to darkgreen
-rw-r--r--HISTORY1
-rw-r--r--menu.cpp4
2 files changed, 3 insertions, 2 deletions
diff --git a/HISTORY b/HISTORY
index 21bbb5a..4cea151 100644
--- a/HISTORY
+++ b/HISTORY
@@ -33,3 +33,4 @@ ____-__-__: Version _._._
- Show possible numbers as pattern.
- Show possible numbers as digits (VDR >= 1.5.4).
- Paint numbers with a larger font (VDR >= 1.5.4).
+- Changed the background color of marked cells to darkgreen.
diff --git a/menu.cpp b/menu.cpp
index f565a1c..5d087b7 100644
--- a/menu.cpp
+++ b/menu.cpp
@@ -17,7 +17,7 @@
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
- * $Id: menu.cpp 111 2008-01-07 00:04:25Z tom $
+ * $Id: menu.cpp 112 2008-03-16 17:56:36Z tom $
*/
#include "menu.h"
@@ -50,7 +50,7 @@ using namespace Sudoku;
#define AMBIG_FG clrWhite
#define AMBIG_BG clrMagenta
#define MARKED_FG clrWhite
-#define MARKED_BG clrGreen
+#define MARKED_BG 0x006400 /* darkgreen */
#define GIVEN_FG clrBlack
#define GIVEN_BG clrCyan
#define POSSIBLE_FG clrBlack