1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

fixed wrong group status image

This commit is contained in:
krepa098 2014-10-04 11:08:14 +02:00
parent b93343bb99
commit 67a7f99d71

View File

@ -79,14 +79,14 @@ void GroupWidget::updateStatusLight()
if (g->hasNewMessages == 0)
{
statusPic.setPixmap(QPixmap(":img/status/dot_groupchat.png"));
statusPic.setPixmap(QPixmap(":img/status/dot_online.png"));
}
else
{
if (g->userWasMentioned == 0)
statusPic.setPixmap(QPixmap(":img/status/dot_groupchat_newmessages.png"));
statusPic.setPixmap(QPixmap(":img/status/dot_online_notification.png"));
else
statusPic.setPixmap(QPixmap(":img/status/dot_groupchat_notification.png"));
statusPic.setPixmap(QPixmap(":img/status/dot_online_notification.png"));
}
}