mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-22 23:58:36 +01:00
Change to use destructive style on delete button. Fixes #3159
This commit is contained in:
parent
b27be9c8ea
commit
29458fb03b
@ -1318,7 +1318,7 @@ private extension MasterFeedViewController {
|
||||
alertController.addAction(UIAlertAction(title: cancelTitle, style: .cancel))
|
||||
|
||||
let deleteTitle = NSLocalizedString("Delete", comment: "Delete")
|
||||
let deleteAction = UIAlertAction(title: deleteTitle, style: .default) { [weak self] action in
|
||||
let deleteAction = UIAlertAction(title: deleteTitle, style: .destructive) { [weak self] action in
|
||||
self?.delete(indexPath: indexPath, feedID: feedID)
|
||||
}
|
||||
alertController.addAction(deleteAction)
|
||||
|
Loading…
Reference in New Issue
Block a user