Qt: Correct EE/IOP console defaults

This commit is contained in:
Connor McLaughlin 2022-03-20 00:05:46 +10:00 committed by refractionpcsx2
parent 80cc2f0cb7
commit 180d9ae9c9
2 changed files with 8 additions and 2 deletions

View File

@ -188,9 +188,9 @@ void MainWindow::connectSignals()
m_ui.actionEnableVerboseLogging->setChecked(true);
m_ui.actionEnableVerboseLogging->setEnabled(false);
#endif
SettingWidgetBinder::BindWidgetToBoolSetting(nullptr, m_ui.actionEnableEEConsoleLogging, "Logging", "EnableEEConsole", false);
SettingWidgetBinder::BindWidgetToBoolSetting(nullptr, m_ui.actionEnableEEConsoleLogging, "Logging", "EnableEEConsole", true);
connect(m_ui.actionEnableEEConsoleLogging, &QAction::triggered, this, &MainWindow::onLoggingOptionChanged);
SettingWidgetBinder::BindWidgetToBoolSetting(nullptr, m_ui.actionEnableIOPConsoleLogging, "Logging", "EnableIOPConsole", false);
SettingWidgetBinder::BindWidgetToBoolSetting(nullptr, m_ui.actionEnableIOPConsoleLogging, "Logging", "EnableIOPConsole", true);
connect(m_ui.actionEnableIOPConsoleLogging, &QAction::triggered, this, &MainWindow::onLoggingOptionChanged);
// These need to be queued connections to stop crashing due to menus opening/closing and switching focus.

View File

@ -699,11 +699,17 @@
</property>
</action>
<action name="actionEnableEEConsoleLogging">
<property name="checkable">
<bool>true</bool>
</property>
<property name="text">
<string>Enable EE Console Logging</string>
</property>
</action>
<action name="actionEnableIOPConsoleLogging">
<property name="checkable">
<bool>true</bool>
</property>
<property name="text">
<string>Enable IOP Console Logging</string>
</property>