Animate attachment rows in when picking assets

This commit is contained in:
Shadowfacts 2021-05-13 22:34:26 -04:00
parent dabcae0905
commit c78f152670
Signed by: shadowfacts
GPG Key ID: 94A5AB95422746E5
1 changed files with 3 additions and 1 deletions

View File

@ -288,7 +288,9 @@ extension ComposeHostingController: AssetPickerViewControllerDelegate {
let attachments = attachments.map {
CompositionAttachment(data: $0)
}
draft.attachments.append(contentsOf: attachments)
withAnimation {
draft.attachments.append(contentsOf: attachments)
}
}
}