diff options
author | Thomas Günther <tom@toms-cafe.de> | 2008-03-16 18:56:36 +0100 |
---|---|---|
committer | Thomas Günther <tom@toms-cafe.de> | 2008-03-16 18:56:36 +0100 |
commit | baa63378b3de16c365255f29a3431488cf6656b3 (patch) | |
tree | 31c68432a89feabdf9a7416edbd8f5c61540e473 | |
parent | 1fb307a1eb363d08e847dcef8433fd0a537ee8b8 (diff) | |
download | vdr-plugin-sudoku-baa63378b3de16c365255f29a3431488cf6656b3.tar.gz vdr-plugin-sudoku-baa63378b3de16c365255f29a3431488cf6656b3.tar.bz2 |
Changed the background color of marked cells to darkgreen
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | menu.cpp | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -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. @@ -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 |