Skip to content
Snippets Groups Projects
Commit d64a5ab3 authored by Joscha's avatar Joscha
Browse files

Fix misplacement of the animated icon in the SendView

parent 45f1ee02
Branches
Tags
No related merge requests found
...@@ -66,7 +66,9 @@ class SendViewController: UIViewController { ...@@ -66,7 +66,9 @@ class SendViewController: UIViewController {
subjectText.toLabelText = NSLocalizedString("Subject", comment: "subject label") + ": " subjectText.toLabelText = NSLocalizedString("Subject", comment: "subject label") + ": "
iconButton.addSubview(AnimatedSendIcon()) let iconView = AnimatedSendIcon()
iconView.frame = iconView.frame.offsetBy(dx: -16, dy: -10)
iconButton.addSubview(iconView)
toText.delegate = dataDelegate toText.delegate = dataDelegate
toText.dataSource = dataDelegate toText.dataSource = dataDelegate
toText.inputTextFieldKeyboardType = UIKeyboardType.emailAddress toText.inputTextFieldKeyboardType = UIKeyboardType.emailAddress
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment