Moved line.

This commit is contained in:
Kevin G Christiano 2019-09-04 09:04:02 -04:00
parent b7d76eb015
commit 81490ae3cf

View File

@ -460,8 +460,8 @@ public typealias ActionBlock = () -> ()
let data = try? Data(contentsOf: url) let data = try? Data(contentsOf: url)
else { return } else { return }
imageAttachment.image = UIImage(data: data)
DispatchQueue.main.sync { DispatchQueue.main.sync {
imageAttachment.image = UIImage(data: data)
label.setNeedsDisplay() label.setNeedsDisplay()
} }
} }