Browse Source

fix(ui): don't duplicate group peer name in tooltip

reviewable/pr5661/r3
Anthony Bilinski 6 years ago
parent
commit
87a53fad96
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
  1. 14
      src/widget/form/groupchatform.cpp

14
src/widget/form/groupchatform.cpp

@ -241,12 +241,14 @@ void GroupChatForm::updateUserNames() @@ -241,12 +241,14 @@ void GroupChatForm::updateUserNames()
* and then sort them by their text and add them to the layout in that order */
const auto selfPk = Core::getInstance()->getSelfPublicKey();
for (const auto& peerPk : peers.keys()) {
const QString fullName = FriendList::decideNickname(peerPk, peers.value(peerPk));
const QString editedName = editName(fullName).append(QLatin1String(", "));
QLabel* const label = new QLabel(editedName);
if (editedName != fullName) {
label->setToolTip(fullName + " (" + peerPk.toString() + ")");
}
const QString peerName = peers.value(peerPk);
const QString editedName = editName(peerName);
QLabel* const label = new QLabel(editedName + QLatin1String(", "));
if (editedName != peerName) {
label->setToolTip(peerName + " (" + peerPk.toString() + ")");
} else if (peerName != peerPk.toString()) {
label->setToolTip(peerPk.toString());
} // else their name is just their Pk, no tooltip needed
label->setTextFormat(Qt::PlainText);
label->setContextMenuPolicy(Qt::CustomContextMenu);

Loading…
Cancel
Save