From a2448c5b66c6826fbdabe04d7828d55843d329d6 Mon Sep 17 00:00:00 2001 From: spycrab Date: Mon, 7 May 2018 17:50:03 +0200 Subject: [PATCH] Qt/GeneralWidget: Various fixes --- Source/Core/DolphinQt2/Config/Graphics/GeneralWidget.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinQt2/Config/Graphics/GeneralWidget.cpp b/Source/Core/DolphinQt2/Config/Graphics/GeneralWidget.cpp index b466740466..e78985321c 100644 --- a/Source/Core/DolphinQt2/Config/Graphics/GeneralWidget.cpp +++ b/Source/Core/DolphinQt2/Config/Graphics/GeneralWidget.cpp @@ -133,7 +133,7 @@ void GeneralWidget::ConnectWidgets() connect(m_backend_combo, static_cast(&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);