浏览代码

make cancel button accessible

cyberta 4 年之前
父节点
当前提交
d2fdfdad66
共有 1 个文件被更改,包括 2 次插入0 次删除
  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.isUserInteractionEnabled = true
         view.translatesAutoresizingMaskIntoConstraints = false
         view.translatesAutoresizingMaskIntoConstraints = false
         view.addSubview(cancelImageView)
         view.addSubview(cancelImageView)
+        view.accessibilityLabel = String.localized("cancel")
+        view.isAccessibilityElement = true
         return view
         return view
     }()
     }()