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