mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-26 23:59:54 -06: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:
@ -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())
|
||||||
|
Reference in New Issue
Block a user