chore: ActionDialog, remove empty statement

This commit is contained in:
sithlord48
2025-05-23 13:52:49 -04:00
committed by Nick Bolton
parent a4f1a382d3
commit f77213af04

View File

@ -142,7 +142,7 @@ bool ActionDialog::canSave()
for (const auto &item : items) {
if (item->checkState() == Qt::Checked)
totalChecked++;
};
}
return (!ui->keySequenceWidget->keySequence().toString().isEmpty() && (totalChecked > 0));
}
return true;