Browse Source

fix(widget): properly show status messages

Fixes #3123
pull/3198/head
a68366 9 years ago
parent
commit
dcb8c3f323
  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