2
2
mirror of https://github.com/mastodon/mastodon-ios synced 2025-04-11 22:58:02 +02:00

feat: set server picker search text field keyboard type to URL

This commit is contained in:
CMK 2021-06-08 17:05:20 +08:00
parent 5983455849
commit c4e38e76ee

View File

@ -53,6 +53,7 @@ class PickServerSearchCell: UITableViewCell {
textField.autocapitalizationType = .none
textField.autocorrectionType = .no
textField.returnKeyType = .done
textField.keyboardType = .URL
return textField
}()