Change Comment field from QTextBrowser to QLabel

This commit is contained in:
Chocobo1 2015-06-21 13:44:06 +08:00
parent 4d5512dcca
commit 50b3a24371
2 changed files with 12 additions and 3 deletions

View file

@ -280,7 +280,7 @@ void PropertiesWidget::loadTorrentInfos(BitTorrent::TorrentHandle *const torrent
label_total_size_val->setText(Utils::Misc::friendlyUnit(m_torrent->totalSize()));
// Comment
comment_text->setHtml(Utils::Misc::parseHtmlLinks(m_torrent->comment()));
comment_text->setText(Utils::Misc::parseHtmlLinks(m_torrent->comment()));
// URL seeds
loadUrlSeeds();