mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-09-18 03:44:56 -04:00
Merge pull request #446 from PhenomRetroShare/Fix_FriendListSortGPGItem
Fix FriendList sorting when expand PGPItem sorted by LastContact or IP
This commit is contained in:
commit
2126234f47
1 changed files with 2 additions and 2 deletions
|
@ -1176,9 +1176,9 @@ void FriendList::insertPeers()
|
|||
gpgItem->setData(COLUMN_NAME, ROLE_FILTER, gpgName);
|
||||
|
||||
gpgItem->setData(COLUMN_LAST_CONTACT, Qt::DisplayRole, showInfoAtGpgItem ? QVariant(bestLastContact) : "");
|
||||
gpgItem->setData(COLUMN_LAST_CONTACT, ROLE_SORT_NAME, showInfoAtGpgItem ? QVariant(bestLastContact) : "");
|
||||
gpgItem->setData(COLUMN_LAST_CONTACT, ROLE_SORT_NAME, QVariant(bestLastContact));
|
||||
gpgItem->setText(COLUMN_IP, showInfoAtGpgItem ? bestIP : "");
|
||||
gpgItem->setData(COLUMN_IP, ROLE_SORT_NAME, showInfoAtGpgItem ? bestIP : "");
|
||||
gpgItem->setData(COLUMN_IP, ROLE_SORT_NAME, bestIP);
|
||||
|
||||
/* Sort data */
|
||||
gpgItem->setData(COLUMN_NAME, ROLE_SORT_NAME, gpgName);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue