mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 05:51:27 +12:00
log_frame: fix random stack
This commit is contained in:
parent
d51a986dd4
commit
930ce4af60
1 changed files with 2 additions and 1 deletions
|
@ -264,7 +264,8 @@ void log_frame::LoadSettings()
|
||||||
{
|
{
|
||||||
SetLogLevel(xgui_settings->GetLogLevel());
|
SetLogLevel(xgui_settings->GetLogLevel());
|
||||||
SetTTYLogging(xgui_settings->GetValue(GUI::l_tty).toBool());
|
SetTTYLogging(xgui_settings->GetValue(GUI::l_tty).toBool());
|
||||||
stackAct->setChecked(xgui_settings->GetValue(GUI::l_stack).toBool());
|
m_stack_log = xgui_settings->GetValue(GUI::l_stack).toBool();
|
||||||
|
stackAct->setChecked(m_stack_log);
|
||||||
}
|
}
|
||||||
|
|
||||||
void log_frame::UpdateUI()
|
void log_frame::UpdateUI()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue