Browse Source

make cancel button accessible

cyberta 4 years ago
parent
commit
d2fdfdad66
1 changed files with 2 additions and 0 deletions
  1. 2 0
      deltachat-ios/View/QuotePreview.swift

+ 2 - 0
deltachat-ios/View/QuotePreview.swift

@@ -29,6 +29,8 @@ public class QuotePreview: UIView, InputItem {
         view.isUserInteractionEnabled = true
         view.translatesAutoresizingMaskIntoConstraints = false
         view.addSubview(cancelImageView)
+        view.accessibilityLabel = String.localized("cancel")
+        view.isAccessibilityElement = true
         return view
     }()