Don't zoom for audio/generic attachments

// FREEBIE
pull/1/head
Michael Kirk 7 years ago
parent 73b215229f
commit 6fb5990faa

@ -236,7 +236,12 @@ public class AttachmentApprovalViewController: OWSViewController {
extension AttachmentApprovalViewController: UIScrollViewDelegate {
public func viewForZooming(in scrollView: UIScrollView) -> UIView? {
return mediaMessageView
if attachment.isImage || attachment.isVideo {
return mediaMessageView
} else {
// don't zoom for audio or generic attachments.
return nil
}
}
fileprivate func updateMinZoomScaleForSize(_ size: CGSize) {

Loading…
Cancel
Save