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
This commit is contained in:
skidau 2010-12-12 05:38:37 +00:00
parent b926cb426e
commit 38b3187e8a
1 changed files with 4 additions and 0 deletions

View File

@ -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())