mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-19 19:53:25 +01:00
Fixes Error Log not showing UIAlertController on iOS 13 or earlier
This commit is contained in:
@@ -125,6 +125,11 @@ private extension ErrorLogViewController
|
|||||||
|
|
||||||
cell.selectionStyle = .none
|
cell.selectionStyle = .none
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Allow table view selections
|
||||||
|
cell.menuButton.isUserInteractionEnabled = false
|
||||||
|
}
|
||||||
|
|
||||||
// Include errorDescriptionTextView's text in cell summary.
|
// 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: ". ")
|
cell.accessibilityLabel = [cell.errorFailureLabel.text, cell.dateLabel.text, cell.errorCodeLabel.text, cell.errorDescriptionTextView.text].compactMap { $0 }.joined(separator: ". ")
|
||||||
|
|||||||
Reference in New Issue
Block a user