From 1e6d9aebea08a70bd9044ee4e77635d63cae6464 Mon Sep 17 00:00:00 2001 From: William Kendrick Date: Mon, 10 Jan 2005 00:44:45 +0000 Subject: [PATCH] Light grey for disabled buttons was WAY too light -- hard to see!!! --- src/tuxpaint.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tuxpaint.c b/src/tuxpaint.c index 9079537e4..56b85b854 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -6975,7 +6975,8 @@ static void setup(int argc, char * argv[]) img_btn_off->format->Gmask, img_btn_off->format->Bmask, img_btn_off->format->Amask); - SDL_FillRect(img_grey, NULL, SDL_MapRGBA(screen->format, 0xe7, 0xe7, 0xe7, 255)); + // SDL_FillRect(img_grey, NULL, SDL_MapRGBA(screen->format, 0xe7, 0xe7, 0xe7, 255)); // WAY too light! + SDL_FillRect(img_grey, NULL, SDL_MapRGBA(screen->format, 0x88, 0x88, 0x88, 255)); // Easier to see show_progress_bar();