From 761e32a84792f6109ee3130c40871f687ff1d9ce Mon Sep 17 00:00:00 2001 From: Francisco Ryan Tolmasky I Date: Sun, 5 Jul 2009 21:04:08 -0700 Subject: [PATCH] Fix for updating window background color to match crushed png. Reviewed by me. --- AppKit/CPWindow/_CPStandardWindowView.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppKit/CPWindow/_CPStandardWindowView.j b/AppKit/CPWindow/_CPStandardWindowView.j index 38c44f353..c88da796b 100644 --- a/AppKit/CPWindow/_CPStandardWindowView.j +++ b/AppKit/CPWindow/_CPStandardWindowView.j @@ -56,7 +56,7 @@ var _CPTexturedWindowHeadGradientColor = nil, + (CPColor)solidColor { if (!_CPTexturedWindowHeadSolidColor) - _CPTexturedWindowHeadSolidColor = [CPColor colorWithCalibratedRed:182.0 / 255.0 green:182.0 / 255.0 blue:182.0 / 255.0 alpha:1.0]; + _CPTexturedWindowHeadSolidColor = [CPColor colorWithCalibratedRed:195.0 / 255.0 green:195.0 / 255.0 blue:195.0 / 255.0 alpha:1.0]; return _CPTexturedWindowHeadSolidColor; }