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

Fix font size in contact list

This commit is contained in:
tux3 2015-06-07 15:35:15 +02:00
parent e079a7a195
commit 98e91f90c3
No known key found for this signature in database
GPG Key ID: 7E086DD661263264

View File

@ -82,6 +82,8 @@ void GenericChatroomWidget::setCompact(bool _compact)
layout->addWidget(&statusPic);
layout->addSpacing(5);
layout->activate();
statusMessageLabel->setFont(Style::getFont(Style::Small));
nameLabel->setFont(Style::getFont(Style::Medium));
}
else
{
@ -99,6 +101,8 @@ void GenericChatroomWidget::setCompact(bool _compact)
layout->addWidget(&statusPic);
layout->addSpacing(10);
layout->activate();
statusMessageLabel->setFont(Style::getFont(Style::Medium));
nameLabel->setFont(Style::getFont(Style::Big));
}
}