Add missing brackets + change indentation to spaces

This commit is contained in:
luz paz
2022-12-04 06:56:22 -05:00
committed by 0penBrain
parent 80efe8191e
commit 7637d58df0
4 changed files with 51 additions and 37 deletions

View File

@@ -484,8 +484,9 @@ void DlgGeneralImp::onImportConfigClicked()
auto result = QMessageBox::question(
this, tr("File exists"),
tr("A preference pack with that name already exists. Overwrite?"));
if (result == QMessageBox::No) // Maybe someday ask for a new name?
if (result == QMessageBox::No) { // Maybe someday ask for a new name?
return;
}
}
Application::Instance->prefPackManager()->importConfig(packName, path);
recreatePreferencePackMenu();