瀏覽代碼

improve accessibility for swipe to reply

cyberta 4 年之前
父節點
當前提交
031a48cc85
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      deltachat-ios/Chat/ChatViewController.swift

+ 2 - 1
deltachat-ios/Chat/ChatViewController.swift

@@ -433,8 +433,9 @@ class ChatViewController: UITableViewController {
         } else {
             action.image = UIImage(named: "ic_reply_black")
         }
+        action.image?.accessibilityTraits = .button
+        action.image?.accessibilityLabel = String.localized("menu_reply")
         action.backgroundColor = DcColors.chatBackgroundColor
-        action.accessibilityHint = String.localized("reply_noun")
         let configuration = UISwipeActionsConfiguration(actions: [action])
 
         return configuration