diff --git a/Tusker/Screens/Compose/ComposeHostingController.swift b/Tusker/Screens/Compose/ComposeHostingController.swift index 63676e40..7e765052 100644 --- a/Tusker/Screens/Compose/ComposeHostingController.swift +++ b/Tusker/Screens/Compose/ComposeHostingController.swift @@ -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) + } } }