1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-11 07:18:08 +00:00

RSS: Fix buttons height

This commit is contained in:
Christophe Dumez 2011-09-26 20:09:24 +03:00
parent de2d2c7469
commit bf746be692
2 changed files with 13 additions and 0 deletions

View File

@ -21,6 +21,12 @@
<layout class="QHBoxLayout" name="horizontalLayout"> <layout class="QHBoxLayout" name="horizontalLayout">
<item> <item>
<widget class="QToolButton" name="newFeedButton"> <widget class="QToolButton" name="newFeedButton">
<property name="minimumSize">
<size>
<width>32</width>
<height>32</height>
</size>
</property>
<property name="text"> <property name="text">
<string>New subscription</string> <string>New subscription</string>
</property> </property>
@ -31,6 +37,12 @@
</item> </item>
<item> <item>
<widget class="QToolButton" name="markReadButton"> <widget class="QToolButton" name="markReadButton">
<property name="minimumSize">
<size>
<width>32</width>
<height>32</height>
</size>
</property>
<property name="text"> <property name="text">
<string>Mark items read</string> <string>Mark items read</string>
</property> </property>

View File

@ -48,6 +48,7 @@ RssManager::RssManager(): RssFolder() {
RssManager::~RssManager(){ RssManager::~RssManager(){
qDebug("Deleting RSSManager"); qDebug("Deleting RSSManager");
m_refreshTimer.stop();
delete m_rssDownloader; delete m_rssDownloader;
RssDownloadRuleList::drop(); RssDownloadRuleList::drop();
saveStreamList(); saveStreamList();