From 34775094f6d835756bfb4896a00723299d052fbc Mon Sep 17 00:00:00 2001 From: fourtf Date: Sat, 27 Jan 2018 21:42:47 +0100 Subject: [PATCH] fixed #252 clicking emotes in the emote popup --- src/widgets/helper/splitinput.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widgets/helper/splitinput.cpp b/src/widgets/helper/splitinput.cpp index 06c4638e..569cae2e 100644 --- a/src/widgets/helper/splitinput.cpp +++ b/src/widgets/helper/splitinput.cpp @@ -75,7 +75,7 @@ void SplitInput::initLayout() this->emotePopup = std::make_unique(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() + " "); } }); }