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:
parent
b926cb426e
commit
38b3187e8a
|
@ -324,7 +324,11 @@ void CLogWindow::PopulateRight()
|
||||||
wxTextCtrl* CLogWindow::CreateTextCtrl(wxPanel* parent, wxWindowID id, long Style)
|
wxTextCtrl* CLogWindow::CreateTextCtrl(wxPanel* parent, wxWindowID id, long Style)
|
||||||
{
|
{
|
||||||
wxTextCtrl* TC = new wxTextCtrl(parent, id, wxEmptyString, wxDefaultPosition, wxDefaultSize, Style);
|
wxTextCtrl* TC = new wxTextCtrl(parent, id, wxEmptyString, wxDefaultPosition, wxDefaultSize, Style);
|
||||||
|
#ifdef __APPLE__
|
||||||
TC->SetBackgroundColour(*wxLIGHT_GREY);
|
TC->SetBackgroundColour(*wxLIGHT_GREY);
|
||||||
|
#else
|
||||||
|
TC->SetBackgroundColour(*wxBLACK);
|
||||||
|
#endif
|
||||||
if (m_FontChoice)
|
if (m_FontChoice)
|
||||||
{
|
{
|
||||||
if (m_FontChoice->GetSelection() < (int)LogFont.size())
|
if (m_FontChoice->GetSelection() < (int)LogFont.size())
|
||||||
|
|
Loading…
Reference in New Issue