mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-06-13 05:37:42 +02:00
Added missing variable from lambda capture
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
@ -104,7 +104,8 @@ ModFolderPage::ModFolderPage(BaseInstance* inst, std::shared_ptr<ModFolderModel>
|
|||||||
auto depsDisabled = APPLICATION->settings()->getSetting("ModDependenciesDisabled");
|
auto depsDisabled = APPLICATION->settings()->getSetting("ModDependenciesDisabled");
|
||||||
updateWithDeps->setVisible(!depsDisabled->get().toBool());
|
updateWithDeps->setVisible(!depsDisabled->get().toBool());
|
||||||
connect(depsDisabled.get(), &Setting::SettingChanged, this,
|
connect(depsDisabled.get(), &Setting::SettingChanged, this,
|
||||||
[](const Setting& setting, QVariant value) { updateWithDeps->setVisible(!value.toBool()); });
|
[updateWithDeps](const Setting& setting, QVariant value) { updateWithDeps->setVisible(!value.toBool()); });
|
||||||
|
|
||||||
auto actionRemoveItemMetadata = updateMenu->addAction(tr("Reset update metadata"));
|
auto actionRemoveItemMetadata = updateMenu->addAction(tr("Reset update metadata"));
|
||||||
actionRemoveItemMetadata->setToolTip(tr("Remove mod's metadata"));
|
actionRemoveItemMetadata->setToolTip(tr("Remove mod's metadata"));
|
||||||
connect(actionRemoveItemMetadata, &QAction::triggered, this, &ModFolderPage::deleteModMetadata);
|
connect(actionRemoveItemMetadata, &QAction::triggered, this, &ModFolderPage::deleteModMetadata);
|
||||||
|
Reference in New Issue
Block a user