From 85e99c67fa7d846ae4e9acc57004ebfd365c64c2 Mon Sep 17 00:00:00 2001 From: Matthew Wilber Date: Mon, 15 Nov 2004 23:38:36 +0000 Subject: [PATCH] Fixed config view color so that, like Be's version, all config views have the same color git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9970 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/prefs/datatranslations/DataTranslationsWindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/prefs/datatranslations/DataTranslationsWindow.cpp b/src/prefs/datatranslations/DataTranslationsWindow.cpp index 42f0611bf6..d610ef854b 100644 --- a/src/prefs/datatranslations/DataTranslationsWindow.cpp +++ b/src/prefs/datatranslations/DataTranslationsWindow.cpp @@ -147,6 +147,8 @@ DataTranslationsWindow::ShowConfigView(int32 id) } fConfigView->MoveTo(configRect.left, configRect.top); fConfigView->ResizeTo(configRect.Width(), configRect.Height()); + fConfigView->SetViewColor(ui_color(B_PANEL_BACKGROUND_COLOR)); + // force config views to all have the same color fRightBox->AddChild(fConfigView); UpdateIfNeeded();