diff --git a/Riot/Modules/MatrixKit/Models/Room/MXKRoomBubbleCellData.h b/Riot/Modules/MatrixKit/Models/Room/MXKRoomBubbleCellData.h index eba99595c..e094e13e5 100644 --- a/Riot/Modules/MatrixKit/Models/Room/MXKRoomBubbleCellData.h +++ b/Riot/Modules/MatrixKit/Models/Room/MXKRoomBubbleCellData.h @@ -46,6 +46,11 @@ */ NSAttributedString *attributedTextMessage; + /** + Same as attributedTextMessage but without vertical positioning vertical spaces. + */ + NSAttributedString *attributedTextMessageWithoutPositioningSpace; + /** The optional text pattern to be highlighted in the body of the message. */ diff --git a/Riot/Modules/MatrixKit/Models/Room/MXKRoomBubbleCellDataStoring.h b/Riot/Modules/MatrixKit/Models/Room/MXKRoomBubbleCellDataStoring.h index 9f227b79a..5ec4b9cb7 100644 --- a/Riot/Modules/MatrixKit/Models/Room/MXKRoomBubbleCellDataStoring.h +++ b/Riot/Modules/MatrixKit/Models/Room/MXKRoomBubbleCellDataStoring.h @@ -163,6 +163,10 @@ */ @property (nonatomic) NSAttributedString *attributedTextMessage; +/** + Same as attributedTextMessage but without vertical positioning blank space + */ +@property (nonatomic) NSAttributedString *attributedTextMessageWithoutPositioningSpace; /** The raw text message (without attributes) */