diff options
Diffstat (limited to 'src/gui/popupmenu.cpp')
-rw-r--r-- | src/gui/popupmenu.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/gui/popupmenu.cpp b/src/gui/popupmenu.cpp index e88322d97..8bc53836f 100644 --- a/src/gui/popupmenu.cpp +++ b/src/gui/popupmenu.cpp @@ -130,7 +130,6 @@ void PopupMenu::showPopup(const int x, const int y, const Being *const being) mY = y; const std::string &name = mNick; - mBrowserBox->addRow(name + being->getGenderSignWithSpace()); switch (being->getType()) @@ -924,9 +923,14 @@ void PopupMenu::handleLink(const std::string &link, if (chatWindow) { if (config.getBoolValue("whispertab")) + { chatWindow->localChatInput("/q " + mNick); + } else - chatWindow->addInputText("/w \"" + mNick + "\" "); + { + chatWindow->addInputText(std::string("/w \"").append( + mNick).append("\" ")); + } } } else if (link == "move" && !mNick.empty()) |