mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-05 15:45:04 -04:00
Merge pull request #543 from PhenomRetroShare/Add_TooltipOnComments
Add Tooltip on comments column to see too long text.
This commit is contained in:
commit
04992c9c29
1 changed files with 7 additions and 5 deletions
|
@ -418,19 +418,21 @@ void GxsCommentTreeWidget::service_loadThread(const uint32_t &token)
|
||||||
std::cerr << "GxsCommentTreeWidget::service_loadThread() Got Comment: " << comment.mMeta.mMsgId;
|
std::cerr << "GxsCommentTreeWidget::service_loadThread() Got Comment: " << comment.mMeta.mMsgId;
|
||||||
std::cerr << std::endl;
|
std::cerr << std::endl;
|
||||||
|
|
||||||
GxsIdRSTreeWidgetItem *item = new GxsIdRSTreeWidgetItem(NULL);
|
GxsIdRSTreeWidgetItem *item = new GxsIdRSTreeWidgetItem(NULL) ;
|
||||||
QString text;
|
QString text;
|
||||||
|
|
||||||
{
|
{
|
||||||
QDateTime qtime;
|
QDateTime qtime ;
|
||||||
qtime.setTime_t(comment.mMeta.mPublishTs);
|
qtime.setTime_t(comment.mMeta.mPublishTs) ;
|
||||||
|
|
||||||
text = qtime.toString("yyyy-MM-dd hh:mm:ss");
|
text = qtime.toString("yyyy-MM-dd hh:mm:ss") ;
|
||||||
item->setText(PCITEM_COLUMN_DATE, text);
|
item->setText(PCITEM_COLUMN_DATE, text) ;
|
||||||
|
item->setToolTip(PCITEM_COLUMN_DATE, text) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
text = QString::fromUtf8(comment.mComment.c_str());
|
text = QString::fromUtf8(comment.mComment.c_str());
|
||||||
item->setText(PCITEM_COLUMN_COMMENT, text);
|
item->setText(PCITEM_COLUMN_COMMENT, text);
|
||||||
|
item->setToolTip(PCITEM_COLUMN_COMMENT, text);
|
||||||
|
|
||||||
RsGxsId authorId = comment.mMeta.mAuthorId;
|
RsGxsId authorId = comment.mMeta.mAuthorId;
|
||||||
item->setId(authorId, PCITEM_COLUMN_AUTHOR, false);
|
item->setId(authorId, PCITEM_COLUMN_AUTHOR, false);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue