diff options
| -rw-r--r-- | Swift/QtUI/QtChatWindow.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/Swift/QtUI/QtChatWindow.cpp b/Swift/QtUI/QtChatWindow.cpp index 102fe63..fc8dc1e 100644 --- a/Swift/QtUI/QtChatWindow.cpp +++ b/Swift/QtUI/QtChatWindow.cpp @@ -139,7 +139,7 @@ void QtChatWindow::setName(const String& name) {  }  void QtChatWindow::updateTitleWithUnreadCount() { -	setWindowTitle(unreadCount_ > 0 ? QString("(%1) %2)").arg(unreadCount_).arg(contact_) : contact_); +	setWindowTitle(unreadCount_ > 0 ? QString("(%1) %2").arg(unreadCount_).arg(contact_) : contact_);  	emit titleUpdated();  } | 
 Swift
 Swift