Refine appearance of quoted reply message cells.

pull/1/head
Matthew Chen 7 years ago
parent 7fe83cbc42
commit 214e3a9c4d

@ -1 +1 @@
Subproject commit 7d20c06f10623230848be112f493804b108e6aa1
Subproject commit e54eb900c0c4be9646d4c7ed800c8ea45d275686

@ -284,6 +284,15 @@ typedef NS_ENUM(NSInteger, CellState) { kArchiveState, kInboxState };
}
[self updateBarButtonItems];
dispatch_async(dispatch_get_main_queue(), ^{
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
TSThread *thread = [self threadForIndexPath:indexPath];
if (!thread) {
return;
}
[self presentThread:thread keyboardOnViewAppearing:NO callOnViewAppearing:NO];
});
}
- (void)viewDidAppear:(BOOL)animated

Loading…
Cancel
Save