fix space (#2990)
This commit is contained in:
parent
87c978937d
commit
51ec593759
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue