Hide the edit menu for attachment until they are uploaded.

// FREEBIE
pull/1/head
Matthew Chen 7 years ago
parent f36316c609
commit 435a42bb3c

@ -256,6 +256,10 @@ NS_ASSUME_NONNULL_BEGIN
- (BOOL)canPerformEditingAction:(SEL)action
{
if ([self attachmentStream] && ![self attachmentStream].isUploaded) {
return NO;
}
// Deletes are always handled by TSMessageAdapter
if (action == @selector(delete:)) {
return YES;

Loading…
Cancel
Save