From 1ce7b7814bd39b1947cb99cbfe13e23b605a38c9 Mon Sep 17 00:00:00 2001 From: Chili Palmer Date: Wed, 12 Aug 2026 20:19:25 +0200 Subject: [PATCH] Show current TOTP lock state (#80) --- apple/Sources/App/IronStorageApp.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apple/Sources/App/IronStorageApp.swift b/apple/Sources/App/IronStorageApp.swift index 176fb3b..49023b7 100644 --- a/apple/Sources/App/IronStorageApp.swift +++ b/apple/Sources/App/IronStorageApp.swift @@ -2164,7 +2164,7 @@ private final class TotpListViewController: UITableViewController, MobileTabRoot private func configureLockButton() { let unlocked = (try? authentication?.state().unlocked) == true navigationItem.rightBarButtonItem = UIBarButtonItem( - image: UIImage(systemName: unlocked ? "lock.fill" : "lock.open.fill"), + image: UIImage(systemName: unlocked ? "lock.open.fill" : "lock.fill"), style: .plain, target: self, action: unlocked ? #selector(lockRequested) : #selector(unlockRequested)