mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
fixed #252 clicking emotes in the emote popup
This commit is contained in:
parent
d33adff5c9
commit
34775094f6
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ void SplitInput::initLayout()
|
|||
this->emotePopup = std::make_unique<EmotePopup>(this->themeManager);
|
||||
this->emotePopup->linkClicked.connect([this](const messages::Link &link) {
|
||||
if (link.getType() == messages::Link::InsertText) {
|
||||
this->insertText(link.getValue());
|
||||
this->insertText(link.getValue() + " ");
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue