Skip to content
Permalink
Browse files
Merge pull request #6781 from spycrab/qt_rtm_addendum
Qt/GeneralWidget: Various fixes
  • Loading branch information
Helios747 committed May 7, 2018
2 parents cd9420d + a2448c5 commit e62c26c
Showing 1 changed file with 2 additions and 2 deletions.
@@ -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);

0 comments on commit e62c26c

Please sign in to comment.