From de240be0146c6315659c0b7d32d868cb550e074c Mon Sep 17 00:00:00 2001 From: Kyle Bolen Date: Thu, 30 Jul 2026 05:40:01 +0000 Subject: [PATCH] Fix mangled showCheckbox expression from sed substitution --- src/main/kotlin/com/bolenpad/photophetch/ui/VerifyScreen.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/com/bolenpad/photophetch/ui/VerifyScreen.kt b/src/main/kotlin/com/bolenpad/photophetch/ui/VerifyScreen.kt index 57cc902..af07aac 100644 --- a/src/main/kotlin/com/bolenpad/photophetch/ui/VerifyScreen.kt +++ b/src/main/kotlin/com/bolenpad/photophetch/ui/VerifyScreen.kt @@ -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,