From 38b3187e8add39f37f01d7416e6c5b0566551eb1 Mon Sep 17 00:00:00 2001 From: skidau Date: Sun, 12 Dec 2010 05:38:37 +0000 Subject: [PATCH] Changed the LogWindow background colour back to black for Linux and Windows. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6566 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/DolphinWX/Src/LogWindow.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/Core/DolphinWX/Src/LogWindow.cpp b/Source/Core/DolphinWX/Src/LogWindow.cpp index 52ad8b542e..6aab710366 100644 --- a/Source/Core/DolphinWX/Src/LogWindow.cpp +++ b/Source/Core/DolphinWX/Src/LogWindow.cpp @@ -324,7 +324,11 @@ void CLogWindow::PopulateRight() wxTextCtrl* CLogWindow::CreateTextCtrl(wxPanel* parent, wxWindowID id, long Style) { wxTextCtrl* TC = new wxTextCtrl(parent, id, wxEmptyString, wxDefaultPosition, wxDefaultSize, Style); +#ifdef __APPLE__ TC->SetBackgroundColour(*wxLIGHT_GREY); +#else + TC->SetBackgroundColour(*wxBLACK); +#endif if (m_FontChoice) { if (m_FontChoice->GetSelection() < (int)LogFont.size())