From 30e6c443567f4ec84a37f730d695dfb8c4fa0281 Mon Sep 17 00:00:00 2001 From: Danny Moesch Date: Tue, 11 Feb 2020 19:53:36 +0100 Subject: [PATCH] Do not keep the cells selected --- pass/Controllers/PGPKeyFileSettingTableViewController.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/pass/Controllers/PGPKeyFileSettingTableViewController.swift b/pass/Controllers/PGPKeyFileSettingTableViewController.swift index 030d9bc..a487843 100644 --- a/pass/Controllers/PGPKeyFileSettingTableViewController.swift +++ b/pass/Controllers/PGPKeyFileSettingTableViewController.swift @@ -29,6 +29,7 @@ class PGPKeyFileSettingTableViewController: AutoCellHeightUITableViewController override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { let cell = tableView.cellForRow(at: indexPath) let picker = UIDocumentPickerViewController(documentTypes: ["public.data"], in: .open) + cell?.isSelected = false if cell == pgpPublicKeyFile { currentlyPicking = .public } else if cell == pgpPrivateKeyFile {