Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
fix(widget): properly show status messages
Browse files Browse the repository at this point in the history
Fixes #3123
  • Loading branch information
a68366 committed Apr 25, 2016
1 parent 24a7f4d commit dcb8c3f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/widget/widget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit dcb8c3f

Please sign in to comment.