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

fix(core): also print PKs in group userlist

This commit is contained in:
Monsterovich 2019-01-05 15:58:59 +02:00
parent ee500703aa
commit 066bdc5cc1

View File

@ -266,7 +266,7 @@ void GroupChatForm::updateUserNames()
const QString editedName = editName(fullName).append(QLatin1String(", "));
QLabel* const label = new QLabel(editedName);
if (editedName != fullName) {
label->setToolTip(fullName);
label->setToolTip(fullName + " (" + peerPk.toString() + ")");
}
label->setTextFormat(Qt::PlainText);
label->setContextMenuPolicy(Qt::CustomContextMenu);