mirror of https://github.com/procxx/kepka.git
Fix rich text entities in log entry original.
This commit is contained in:
parent
0a9db8533b
commit
ae56c5266f
|
@ -349,9 +349,10 @@ void GenerateItems(gsl::not_null<History*> history, LocalIdManager &idManager, c
|
|||
auto applyServiceAction = false;
|
||||
auto detachExistingItem = false;
|
||||
auto body = history->createItem(PrepareLogMessage(action.vnew_message, idManager.next(), date.v), applyServiceAction, detachExistingItem);
|
||||
if (!oldValue.text.isEmpty()) {
|
||||
body->addLogEntryOriginal(id, lang(canHaveCaption ? lng_admin_log_previous_caption : lng_admin_log_previous_message), oldValue);
|
||||
if (oldValue.text.isEmpty()) {
|
||||
oldValue = PrepareText(QString(), lang(lng_admin_log_empty_text));
|
||||
}
|
||||
body->addLogEntryOriginal(id, lang(canHaveCaption ? lng_admin_log_previous_caption : lng_admin_log_previous_message), oldValue);
|
||||
addPart(body);
|
||||
};
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@ TextParseOptions _webpageTitleOptions = {
|
|||
Qt::LayoutDirectionAuto, // dir
|
||||
};
|
||||
TextParseOptions _webpageDescriptionOptions = {
|
||||
TextParseLinks | TextParseMentions | TextParseHashtags | TextParseMultiline | TextParseRichText, // flags
|
||||
TextParseLinks | TextParseMentions | TextParseHashtags | TextParseMultiline | TextParseRichText | TextParseMono, // flags
|
||||
0, // maxw
|
||||
0, // maxh
|
||||
Qt::LayoutDirectionAuto, // dir
|
||||
|
@ -3726,7 +3726,10 @@ void HistoryGame::initDimensions() {
|
|||
if (!_attach) {
|
||||
text += _parent->skipBlock();
|
||||
}
|
||||
_description.setText(st::webPageDescriptionStyle, text, _webpageDescriptionOptions);
|
||||
auto marked = TextWithEntities { text };
|
||||
auto parseFlags = TextParseLinks | TextParseMultiline | TextParseRichText;
|
||||
textParseEntities(marked.text, parseFlags, &marked.entities);
|
||||
_description.setMarkedText(st::webPageDescriptionStyle, marked, _webpageDescriptionOptions);
|
||||
}
|
||||
}
|
||||
if (_title.isEmpty() && !title.isEmpty()) {
|
||||
|
@ -4151,7 +4154,10 @@ void HistoryInvoice::fillFromData(const MTPDmessageMediaInvoice &data) {
|
|||
// init strings
|
||||
auto description = qs(data.vdescription);
|
||||
if (!description.isEmpty()) {
|
||||
_description.setText(st::webPageDescriptionStyle, description, _webpageDescriptionOptions);
|
||||
auto marked = TextWithEntities { description };
|
||||
auto parseFlags = TextParseLinks | TextParseMultiline | TextParseRichText;
|
||||
textParseEntities(marked.text, parseFlags, &marked.entities);
|
||||
_description.setMarkedText(st::webPageDescriptionStyle, marked, _webpageDescriptionOptions);
|
||||
}
|
||||
auto title = textOneLine(qs(data.vtitle));
|
||||
if (!title.isEmpty()) {
|
||||
|
@ -4457,7 +4463,10 @@ HistoryLocation::HistoryLocation(gsl::not_null<HistoryItem*> parent, const Locat
|
|||
_title.setText(st::webPageTitleStyle, textClean(title), _webpageTitleOptions);
|
||||
}
|
||||
if (!description.isEmpty()) {
|
||||
_description.setText(st::webPageDescriptionStyle, textClean(description), _webpageDescriptionOptions);
|
||||
auto marked = TextWithEntities { textClean(description) };
|
||||
auto parseFlags = TextParseLinks | TextParseMultiline | TextParseRichText;
|
||||
textParseEntities(marked.text, parseFlags, &marked.entities);
|
||||
_description.setMarkedText(st::webPageDescriptionStyle, marked, _webpageDescriptionOptions);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue