From 2007f3dbe95d7c6d8d1d4ce8718018c2b6c16632 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Thu, 11 Dec 2003 16:24:06 +0000 Subject: [PATCH] Fix COLOR_3DLIGHT SysColour (or SysColor for our US friends). Patch by tamlin. svn path=/trunk/; revision=6958 --- reactos/lib/user32/windows/defwnd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/lib/user32/windows/defwnd.c b/reactos/lib/user32/windows/defwnd.c index 5c39ef5c037..70025edc00c 100644 --- a/reactos/lib/user32/windows/defwnd.c +++ b/reactos/lib/user32/windows/defwnd.c @@ -1,4 +1,4 @@ -/* $Id: defwnd.c,v 1.109 2003/12/10 16:59:00 weiden Exp $ +/* $Id: defwnd.c,v 1.110 2003/12/11 16:24:06 gvg Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS user32.dll @@ -71,7 +71,7 @@ static COLORREF SysColours[] = RGB(192, 192, 192) /* COLOR_INACTIVECAPTIONTEXT */, RGB(255, 255, 255) /* COLOR_BTNHILIGHT */, RGB(32, 32, 32) /* COLOR_3DDKSHADOW */, - RGB(224, 224, 224) /* COLOR_3DLIGHT */, + RGB(192, 192, 192) /* COLOR_3DLIGHT */, RGB(0, 0, 0) /* COLOR_INFOTEXT */, RGB(255, 255, 192) /* COLOR_INFOBK */, RGB(180, 180, 180) /* COLOR_ALTERNATEBTNFACE */,