Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
fix(core): also print PKs in group userlist
Browse files Browse the repository at this point in the history
  • Loading branch information
Monsterovich committed Jan 5, 2019
1 parent ee50070 commit 066bdc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/widget/form/groupchatform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 066bdc5

Please sign in to comment.