mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-25 15:31:17 +01:00
Qt/GeneralWidget: Various fixes
This commit is contained in:
parent
6f0ad84a5e
commit
a2448c5b66
@ -133,7 +133,7 @@ void GeneralWidget::ConnectWidgets()
|
||||
connect(m_backend_combo, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged),
|
||||
[this](int) { SaveSettings(); });
|
||||
|
||||
for (QCheckBox* checkbox : {m_enable_fullscreen, m_render_main_window})
|
||||
for (QCheckBox* checkbox : {m_enable_fullscreen, m_render_main_window, m_autoadjust_window_size})
|
||||
connect(checkbox, &QCheckBox::toggled, this, &GeneralWidget::SaveSettings);
|
||||
}
|
||||
|
||||
@ -155,7 +155,7 @@ void GeneralWidget::LoadSettings()
|
||||
m_enable_fullscreen->setChecked(SConfig::GetInstance().bFullscreen);
|
||||
|
||||
// Render to Main Window
|
||||
SConfig::GetInstance().bRenderToMain = m_render_main_window->isChecked();
|
||||
m_render_main_window->setChecked(SConfig::GetInstance().bRenderToMain);
|
||||
|
||||
// Autoadjust window size
|
||||
m_autoadjust_window_size->setChecked(SConfig::GetInstance().bRenderWindowAutoSize);
|
||||
|
Loading…
x
Reference in New Issue
Block a user