From e29729e2a50c377c35510e8b3cfb2f23dc7e402e Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Thu, 25 Nov 2010 14:37:17 +0000 Subject: [PATCH] Removed first of two consecutive assignments to fNonFocusFrameColors[1]. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39625 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/servers/app/DefaultDecorator.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/servers/app/DefaultDecorator.cpp b/src/servers/app/DefaultDecorator.cpp index 3fe7240ce4..8c6efa780f 100644 --- a/src/servers/app/DefaultDecorator.cpp +++ b/src/servers/app/DefaultDecorator.cpp @@ -85,7 +85,6 @@ DefaultDecorator::DefaultDecorator(DesktopSettings& settings, BRect rect, fFocusFrameColors[0] = (rgb_color){ 224, 224, 224, 255 }; fFocusFrameColors[1] = (rgb_color){ 208, 208, 208, 255 }; fNonFocusFrameColors[0] = (rgb_color){ 232, 232, 232, 255 }; - fNonFocusFrameColors[1] = (rgb_color){ 216, 216, 216, 255 }; fNonFocusFrameColors[1] = fNonFocusFrameColors[0]; fFocusTabColor = settings.UIColor(B_WINDOW_TAB_COLOR);