fix: double ellipsis in reply (#5174)

This commit is contained in:
nerix
2024-02-18 19:25:46 +01:00
committed by GitHub
parent 5c51ec8382
commit cd0387b064
2 changed files with 10 additions and 2 deletions
+9 -1
View File
@@ -608,7 +608,7 @@ void SingleLineTextElement::addToContainer(MessageLayoutContainer &container,
return e;
};
static const auto ellipsis = QStringLiteral("...");
static const auto ellipsis = QStringLiteral("");
// String to continuously append words onto until we place it in the container
// once we encounter an emote or reach the end of the message text. */
@@ -628,6 +628,7 @@ void SingleLineTextElement::addToContainer(MessageLayoutContainer &container,
currentText += ' ';
}
bool done = false;
for (const auto &parsedWord :
app->getEmotes()->getEmojis()->parse(word.text))
{
@@ -641,6 +642,7 @@ void SingleLineTextElement::addToContainer(MessageLayoutContainer &container,
container.remainingWidth());
if (currentText != prev)
{
done = true;
break;
}
}
@@ -663,6 +665,7 @@ void SingleLineTextElement::addToContainer(MessageLayoutContainer &container,
emoteSize.width()))
{
currentText += ellipsis;
done = true;
break;
}
@@ -678,6 +681,11 @@ void SingleLineTextElement::addToContainer(MessageLayoutContainer &container,
}
}
}
if (done)
{
break;
}
}
// Add the last of the pending message text to the container.