muc joining leaving debug, notification debug, delayed delivery wannabe detection

This commit is contained in:
Blue 2019-08-31 23:50:05 +03:00
parent a51907b810
commit f5fa45d853
8 changed files with 87 additions and 22 deletions

View file

@ -219,11 +219,11 @@ void Models::Contact::setState(Shared::SubscriptionState p_state)
QIcon Models::Contact::getStatusIcon(bool big) const
{
if (getMessagesCount() > 0) {
return Shared::icon("mail-message");
return Shared::icon("mail-message", big);
} else if (state == Shared::both) {
return Shared::availabilityIcon(availability, big);;
} else {
return Shared::subscriptionStateIcon(state);
return Shared::subscriptionStateIcon(state, big);
}
}