fix: Only display spaces between words in reply context (#4977)
This commit is contained in:
@@ -152,6 +152,12 @@ namespace chatterino {
|
||||
|
||||
void Emojis::load()
|
||||
{
|
||||
if (this->loaded_)
|
||||
{
|
||||
return;
|
||||
}
|
||||
this->loaded_ = true;
|
||||
|
||||
this->loadEmojis();
|
||||
|
||||
this->sortEmojis();
|
||||
|
||||
@@ -80,6 +80,8 @@ private:
|
||||
// Maps the first character of the emoji unicode string to a vector of
|
||||
// possible emojis
|
||||
QMap<QChar, QVector<std::shared_ptr<EmojiData>>> emojiFirstByte_;
|
||||
|
||||
bool loaded_ = false;
|
||||
};
|
||||
|
||||
} // namespace chatterino
|
||||
|
||||
Reference in New Issue
Block a user