diff options
-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 |