mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 22:56:52 +01:00
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* 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())
|
||||
|
Loading…
x
Reference in New Issue
Block a user