mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-01 15:16:22 +00:00
Merge pull request #6858 from lioncash/capture
DolphinQt2: Resolve unused lambda capture warnings
This commit is contained in:
commit
ca5dc25694
5 changed files with 6 additions and 6 deletions
|
@ -136,7 +136,7 @@ QGroupBox* PathPane::MakeGameFolderBox()
|
|||
vlayout->addLayout(hlayout);
|
||||
vlayout->addWidget(checkbox);
|
||||
|
||||
connect(checkbox, &QCheckBox::toggled, this, [this](bool checked) {
|
||||
connect(checkbox, &QCheckBox::toggled, this, [](bool checked) {
|
||||
SConfig::GetInstance().m_RecursiveISOFolder = checked;
|
||||
for (const auto& path : Settings::Instance().GetPaths())
|
||||
Settings::Instance().ReloadPath(path);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue