Context menu should have option to quote a message #502

This commit is contained in:
manuroe
2016-09-02 09:11:09 +02:00
parent d5303208c2
commit 8c5387ec15
2 changed files with 14 additions and 1 deletions
+13 -1
View File
@@ -1488,7 +1488,19 @@
[[UIPasteboard generalPasteboard] setString:selectedComponent.textMessage];
}];
[currentAlert addActionWithTitle:NSLocalizedStringFromTable(@"room_event_action_quote", @"Vector", nil) style:MXKAlertActionStyleDefault handler:^(MXKAlert *alert) {
__strong __typeof(weakSelf)strongSelf = weakSelf;
[strongSelf cancelEventSelection];
// Quote the message a la Markdown into the input toolbar composer
strongSelf.inputToolbarView.textMessage = [NSString stringWithFormat:@">%@\n\n", selectedComponent.textMessage];
// And display the keyboard
[strongSelf.inputToolbarView becomeFirstResponder];
}];
[currentAlert addActionWithTitle:NSLocalizedStringFromTable(@"room_event_action_share", @"Vector", nil) style:MXKAlertActionStyleDefault handler:^(MXKAlert *alert) {
__strong __typeof(weakSelf)strongSelf = weakSelf;