mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-02 11:33:55 -07:00
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) {
|
void TabMessage::showSystemPopup(const Event_UserMessage &event) {
|
||||||
if (trayIcon) {
|
if (trayIcon) {
|
||||||
disconnect(trayIcon, SIGNAL(messageClicked()), 0, 0);
|
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()));
|
connect(trayIcon, SIGNAL(messageClicked()), this, SLOT(messageClicked()));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue