Fix mangled showCheckbox expression from sed substitution

This commit is contained in:
Kyle Bolen
2026-07-30 05:40:01 +00:00
parent 8681bddb60
commit de240be014

View File

@@ -173,7 +173,7 @@ fun VerifyScreen(state: AppState) {
val isSoftRemoved = cr.photo.devicePath in softRemoved
VerifyResultRow(
result = cr,
showCheckbox = importConfig.deleteAfterVerify &&& !isSoftRemoved !isSoftRemoved,
showCheckbox = importConfig.deleteAfterVerify && !isSoftRemoved,
isChecked = cr.photo.devicePath in toDelete,
canCheck = cr.verified && cr.error == null,
isSoftRemoved = isSoftRemoved,