mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 22:18:05 -06:00
Change Comment field from QTextBrowser to QLabel
Conflicts: src/gui/properties/propertieswidget.cpp
This commit is contained in:
committed by
sledgehammer999
parent
92ef98080b
commit
34d2bdadc0
@@ -283,7 +283,7 @@ void PropertiesWidget::loadTorrentInfos(const QTorrentHandle& _h)
|
|||||||
label_total_size_val->setText(misc::friendlyUnit(h.total_size()));
|
label_total_size_val->setText(misc::friendlyUnit(h.total_size()));
|
||||||
|
|
||||||
// Comment
|
// Comment
|
||||||
comment_text->setHtml(misc::parseHtmlLinks(h.comment()));
|
comment_text->setText(misc::parseHtmlLinks(h.comment()));
|
||||||
|
|
||||||
// URL seeds
|
// URL seeds
|
||||||
loadUrlSeeds();
|
loadUrlSeeds();
|
||||||
|
|||||||
@@ -883,17 +883,26 @@
|
|||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="4" column="1" colspan="5">
|
<item row="4" column="1" colspan="5">
|
||||||
<widget class="QTextBrowser" name="comment_text">
|
<widget class="QLabel" name="comment_text">
|
||||||
<property name="sizePolicy">
|
<property name="sizePolicy">
|
||||||
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
||||||
<horstretch>0</horstretch>
|
<horstretch>0</horstretch>
|
||||||
<verstretch>0</verstretch>
|
<verstretch>0</verstretch>
|
||||||
</sizepolicy>
|
</sizepolicy>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="textFormat">
|
||||||
|
<enum>Qt::RichText</enum>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
|
||||||
|
</property>
|
||||||
<property name="openExternalLinks">
|
<property name="openExternalLinks">
|
||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
</property>
|
</property>
|
||||||
<property name="openLinks">
|
<property name="textInteractionFlags">
|
||||||
|
<set>Qt::TextBrowserInteraction</set>
|
||||||
|
</property>
|
||||||
|
<property name="openLinks" stdset="0">
|
||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
|
|||||||
Reference in New Issue
Block a user