Browse Source

fix(core): also print PKs in group userlist

reviewable/pr5480/r3
Monsterovich 7 years ago
parent
commit
066bdc5cc1
  1. 2
      src/widget/form/groupchatform.cpp

2
src/widget/form/groupchatform.cpp

@ -266,7 +266,7 @@ void GroupChatForm::updateUserNames() @@ -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);

Loading…
Cancel
Save