This commit is contained in:
tooomm 2018-01-03 04:57:23 +01:00 committed by Zach H
parent 87c978937d
commit 51ec593759

View file

@ -135,7 +135,7 @@ bool TabMessage::shouldShowSystemPopup(const Event_UserMessage &event) {
void TabMessage::showSystemPopup(const Event_UserMessage &event) {
if (trayIcon) {
disconnect(trayIcon, SIGNAL(messageClicked()), 0, 0);
trayIcon->showMessage(tr("Private message from ") + otherUserInfo->name().c_str(), event.message().c_str());
trayIcon->showMessage(tr("Private message from") + " " + otherUserInfo->name().c_str(), event.message().c_str());
connect(trayIcon, SIGNAL(messageClicked()), this, SLOT(messageClicked()));
}
else