Skip to content

Commit

Permalink
pcsx2-gui: Modern Dark Themed Console v2.Replaces old dark mode with …
Browse files Browse the repository at this point in the history
…modern dark mode to the console.

Darker than dark (PCSX2#3446)
  • Loading branch information
RedDevilus authored and refractionpcsx2 committed Jul 12, 2020
1 parent 257f8b1 commit c23f3be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pcsx2/gui/ConsoleLogger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ ConsoleLogFrame::ConsoleLogFrame( MainEmuFrame *parent, const wxString& title, A
if (0==m_conf.Theme.CmpNoCase(L"Dark"))
{
m_ColorTable.SetColorScheme_Dark();
m_TextCtrl.SetBackgroundColour( wxColor( 54, 57, 62 ) );
m_TextCtrl.SetBackgroundColour( wxColor( 38, 41, 48 ) );
}
else //if ((0==m_conf.Theme.CmpNoCase("Default")) || (0==m_conf.Theme.CmpNoCase("Light")))
{
Expand Down Expand Up @@ -868,7 +868,7 @@ void ConsoleLogFrame::OnToggleTheme( wxCommandEvent& evt )
case MenuId_ColorScheme_Dark:
newTheme = L"Dark";
m_ColorTable.SetColorScheme_Dark();
m_TextCtrl.SetBackgroundColour( wxColor( 54, 57, 62 ) );
m_TextCtrl.SetBackgroundColour( wxColor( 38, 41, 48 ) );
break;
}

Expand Down

0 comments on commit c23f3be

Please sign in to comment.