mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-18 07:28:28 +02:00
Fix partial text messages not being saved for each room with RTE enabled
This commit is contained in:
@@ -213,6 +213,15 @@ typedef enum : NSUInteger
|
||||
*/
|
||||
- (void)roomInputToolbarView:(MXKRoomInputToolbarView*)toolbarView updateActivityIndicator:(BOOL)isAnimating;
|
||||
|
||||
/**
|
||||
Tells the delegate that the partial content of the composer has changed
|
||||
and should be stored to allow restoring it later if needed.
|
||||
|
||||
@param toolbarView the room input toolbar view
|
||||
@param partialAttributedTextMessage the partial content to store
|
||||
*/
|
||||
- (void)roomInputToolbarView:(MXKRoomInputToolbarView*)toolbarView shouldStorePartialContent:(NSAttributedString*)partialAttributedTextMessage;
|
||||
|
||||
@end
|
||||
|
||||
/**
|
||||
@@ -390,6 +399,11 @@ typedef enum : NSUInteger
|
||||
*/
|
||||
@property (nonatomic) NSAttributedString *attributedTextMessage;
|
||||
|
||||
/**
|
||||
Sets the partial text message to apply to the current message composer.
|
||||
*/
|
||||
- (void)setPartialContent:(NSAttributedString *)attributedTextMessage;
|
||||
|
||||
/**
|
||||
Default font for the message composer.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user