From ce68ea74ad49ac1dce48e048878be64403071029 Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Wed, 26 Oct 2022 18:14:25 -0500 Subject: [PATCH] Fixes Error Log not showing UIAlertController on iOS 13 or earlier --- AltStore/Settings/Error Log/ErrorLogViewController.swift | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/AltStore/Settings/Error Log/ErrorLogViewController.swift b/AltStore/Settings/Error Log/ErrorLogViewController.swift index 68ab57e4..c9bfe6a1 100644 --- a/AltStore/Settings/Error Log/ErrorLogViewController.swift +++ b/AltStore/Settings/Error Log/ErrorLogViewController.swift @@ -125,6 +125,11 @@ private extension ErrorLogViewController cell.selectionStyle = .none } + else + { + // Allow table view selections + cell.menuButton.isUserInteractionEnabled = false + } // Include errorDescriptionTextView's text in cell summary. cell.accessibilityLabel = [cell.errorFailureLabel.text, cell.dateLabel.text, cell.errorCodeLabel.text, cell.errorDescriptionTextView.text].compactMap { $0 }.joined(separator: ". ")