summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2011-01-02 03:55:23 +0000
committerMatthias Melcher <fltk@matthiasm.com>2011-01-02 03:55:23 +0000
commit37002c61558ab939a95c3e28e31ca4ec214590b7 (patch)
tree7e4459bee2446f40c146f32aa5a6039c0c1be11a
parente203237eb3406ce7d4639b33a3ea2b05d8b7e9c5 (diff)
Changed checkers field color because pieces were close to invisibel on OS X. I hope this has no negative effect on very dark desktops... .
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8168 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--test/checkers.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/checkers.cxx b/test/checkers.cxx
index 4c7a21524..b0584e019 100644
--- a/test/checkers.cxx
+++ b/test/checkers.cxx
@@ -1170,6 +1170,7 @@ void quit_cb(Fl_Widget*, void*) {exit(0);}
int FLTKmain(int argc, char** argv) {
Fl::visual(FL_DOUBLE|FL_INDEX);
Board b(BOARDSIZE,BOARDSIZE);
+ b.color(FL_BACKGROUND_COLOR);
b.callback(quit_cb);
b.show(argc,argv);
return Fl::run();