From 066bdc5cc1b0bbe05c35bb184f8b6981fd95e0ce Mon Sep 17 00:00:00 2001 From: Monsterovich Date: Sat, 5 Jan 2019 15:58:59 +0200 Subject: [PATCH] fix(core): also print PKs in group userlist --- src/widget/form/groupchatform.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widget/form/groupchatform.cpp b/src/widget/form/groupchatform.cpp index a61f10901..b366ec28e 100644 --- a/src/widget/form/groupchatform.cpp +++ b/src/widget/form/groupchatform.cpp @@ -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);