Merge pull request #5772 from ligfx/fixwxlogconfig

DolphinWX: fix logging crash + settings not being saved
This commit is contained in:
Leo Lam 2017-07-11 00:17:57 +02:00 committed by GitHub
commit b5dfde12ad
3 changed files with 3 additions and 9 deletions

View File

@ -89,7 +89,7 @@ void LogConfigWindow::CreateGUIControls()
void LogConfigWindow::LoadSettings()
{
m_verbosity->SetSelection(m_LogManager->GetLogLevel());
m_verbosity->SetSelection(m_LogManager->GetLogLevel() - 1);
// Get the logger output settings from the config ini file.
m_writeFileCB->SetValue(m_LogManager->IsListenerEnabled(LogListener::FILE_LISTENER));
@ -117,8 +117,7 @@ void LogConfigWindow::SaveSettings()
// If the verbosity changes while logging
void LogConfigWindow::OnVerbosityChange(wxCommandEvent& event)
{
int v = m_verbosity->GetSelection() + 1;
m_LogManager->SetLogLevel(static_cast<LogTypes::LOG_LEVELS>(v));
m_LogManager->SetLogLevel(static_cast<LogTypes::LOG_LEVELS>(m_verbosity->GetSelection() + 1));
event.Skip();
}

View File

@ -129,11 +129,7 @@ CLogWindow::~CLogWindow()
void CLogWindow::RemoveAllListeners()
{
if (!m_has_listeners)
return;
m_has_listeners = false;
m_LogManager->EnableListener(LogListener::LOG_WINDOW_LISTENER, false);
m_LogManager->RegisterListener(LogListener::LOG_WINDOW_LISTENER, nullptr);
}
void CLogWindow::SaveSettings()

View File

@ -46,7 +46,6 @@ private:
LogManager* m_LogManager;
std::queue<std::pair<u8, wxString>> msgQueue;
bool m_LogAccess;
bool m_has_listeners = true;
// Controls
wxBoxSizer* sBottom;