mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-27 16:39:29 -05:00
Merge pull request #1209 from PhenomRetroShare/Add_DescriptionGxsGroupToolTip
Add description in GroupTreeWidget tooltip.
This commit is contained in:
commit
11cfa7b098
@ -481,12 +481,14 @@ void GroupTreeWidget::fillGroupItems(QTreeWidgetItem *categoryItem, const QList<
|
|||||||
tooltip += "\n" + QString::number(itemInfo.max_visible_posts) + " messages available" ;
|
tooltip += "\n" + QString::number(itemInfo.max_visible_posts) + " messages available" ;
|
||||||
// if(itemInfo.max_visible_posts) // wtf? this=0 when there are some posts definitely exist - lastpost is recent
|
// if(itemInfo.max_visible_posts) // wtf? this=0 when there are some posts definitely exist - lastpost is recent
|
||||||
if(itemInfo.lastpost == QDateTime::fromTime_t(0))
|
if(itemInfo.lastpost == QDateTime::fromTime_t(0))
|
||||||
tooltip += "\n" + tr("Last Post") + ": " + tr("Never") ;
|
tooltip += "\n" + tr("Last Post") + ": " + tr("Never") ;
|
||||||
else
|
else
|
||||||
tooltip += "\n" + tr("Last Post") + ": " + DateTime::formatLongDateTime(itemInfo.lastpost) ;
|
tooltip += "\n" + tr("Last Post") + ": " + DateTime::formatLongDateTime(itemInfo.lastpost) ;
|
||||||
if(!IS_GROUP_SUBSCRIBED(itemInfo.subscribeFlags))
|
if(!IS_GROUP_SUBSCRIBED(itemInfo.subscribeFlags))
|
||||||
tooltip += "\n" + tr("Subscribe to download and read messages") ;
|
tooltip += "\n" + tr("Subscribe to download and read messages") ;
|
||||||
|
|
||||||
|
tooltip += "\n" + tr("Description") + ": " + itemInfo.description;
|
||||||
|
|
||||||
item->setToolTip(COLUMN_NAME, tooltip);
|
item->setToolTip(COLUMN_NAME, tooltip);
|
||||||
item->setToolTip(COLUMN_UNREAD, tooltip);
|
item->setToolTip(COLUMN_UNREAD, tooltip);
|
||||||
item->setToolTip(COLUMN_POPULARITY, tooltip);
|
item->setToolTip(COLUMN_POPULARITY, tooltip);
|
||||||
|
Loading…
Reference in New Issue
Block a user