Skip to content

Commit

Permalink
chore: remove leftover check box in settings panel (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
HamletDuFromage authored Jun 1, 2024
1 parent b01b40e commit 66559aa
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
4 changes: 0 additions & 4 deletions Source/Core/DolphinQt/Settings/GeneralPane.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ void GeneralPane::ConnectLayout()
{
connect(m_checkbox_dualcore, &QCheckBox::toggled, this, &GeneralPane::OnSaveConfig);
connect(m_checkbox_cheats, &QCheckBox::toggled, this, &GeneralPane::OnSaveConfig);
connect(m_checkbox_default_boot_iso, &QCheckBox::toggled, this, &GeneralPane::OnSaveConfig);
connect(m_checkbox_override_region_settings, &QCheckBox::stateChanged, this,
&GeneralPane::OnSaveConfig);
connect(m_checkbox_auto_disc_change, &QCheckBox::toggled, this, &GeneralPane::OnSaveConfig);
Expand Down Expand Up @@ -139,9 +138,6 @@ void GeneralPane::CreateBasic()
m_checkbox_cheats = new QCheckBox(tr("Enable Cheats"));
basic_group_layout->addWidget(m_checkbox_cheats);

m_checkbox_default_boot_iso = new QCheckBox(tr("Start Default ISO at launch"));
basic_group_layout->addWidget(m_checkbox_default_boot_iso);

m_checkbox_override_region_settings = new QCheckBox(tr("Allow Mismatched Region Settings"));
basic_group_layout->addWidget(m_checkbox_override_region_settings);

Expand Down
1 change: 0 additions & 1 deletion Source/Core/DolphinQt/Settings/GeneralPane.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ class GeneralPane final : public QWidget
QComboBox* m_combobox_fallback_region;
QCheckBox* m_checkbox_dualcore;
QCheckBox* m_checkbox_cheats;
QCheckBox* m_checkbox_default_boot_iso;
QCheckBox* m_checkbox_override_region_settings;
QCheckBox* m_checkbox_auto_disc_change;
#ifdef USE_DISCORD_PRESENCE
Expand Down

0 comments on commit 66559aa

Please sign in to comment.