mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 09:24:00 +02:00
Merge branch 'master' of https://github.com/highfidelity/hifi
This commit is contained in:
commit
43ad9b4048
1 changed files with 4 additions and 0 deletions
|
@ -179,6 +179,10 @@ void ChatWindow::participantsChanged() {
|
|||
}
|
||||
|
||||
void ChatWindow::messageReceived(const QXmppMessage& message) {
|
||||
if (message.type() != QXmppMessage::GroupChat) {
|
||||
return;
|
||||
}
|
||||
|
||||
QLabel* userLabel = new QLabel(getParticipantName(message.from()));
|
||||
QFont font = userLabel->font();
|
||||
font.setBold(true);
|
||||
|
|
Loading…
Reference in a new issue