Browse Source

Merge pull request #3198

a68366 (1):
      fix(widget): properly show status messages
pull/3214/head
sudden6 9 years ago
parent
commit
6cd1830571
No known key found for this signature in database
GPG Key ID: 279509B499E032B9
  1. 4
      src/widget/widget.cpp

4
src/widget/widget.cpp

@ -1018,9 +1018,7 @@ void Widget::onFriendStatusChanged(int friendId, Status status) @@ -1018,9 +1018,7 @@ void Widget::onFriendStatusChanged(int friendId, Status status)
ContentDialog::updateFriendStatus(friendId);
//won't print the message if there were no messages before
if (!f->getChatForm()->isEmpty()
&& Settings::getInstance().getStatusChangeNotificationEnabled())
if (Settings::getInstance().getStatusChangeNotificationEnabled())
{
QString fStatus = "";
switch (f->getStatus())

Loading…
Cancel
Save