mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-27 03:39:39 +03:00
- Allow to select multiple rss feeds at once
- Fixed an icon problem when a feed refreshing fails
This commit is contained in:
parent
dcb6642394
commit
533aeb3f8b
2 changed files with 9 additions and 0 deletions
|
@ -438,6 +438,7 @@ class RssManager : public QObject{
|
||||||
stream->setLoading(false);
|
stream->setLoading(false);
|
||||||
qDebug("Could not download Rss at %s, reason: %s", (const char*)url.toUtf8(), (const char*)reason.toUtf8());
|
qDebug("Could not download Rss at %s, reason: %s", (const char*)url.toUtf8(), (const char*)reason.toUtf8());
|
||||||
stream->setDownloadFailed();
|
stream->setDownloadFailed();
|
||||||
|
emit feedInfosChanged(url, stream->getAliasOrUrl(), stream->getNbUnRead());
|
||||||
}
|
}
|
||||||
|
|
||||||
public :
|
public :
|
||||||
|
|
|
@ -40,6 +40,9 @@
|
||||||
<property name="contextMenuPolicy" >
|
<property name="contextMenuPolicy" >
|
||||||
<enum>Qt::CustomContextMenu</enum>
|
<enum>Qt::CustomContextMenu</enum>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="selectionMode" >
|
||||||
|
<enum>QAbstractItemView::ExtendedSelection</enum>
|
||||||
|
</property>
|
||||||
<property name="columnCount" >
|
<property name="columnCount" >
|
||||||
<number>2</number>
|
<number>2</number>
|
||||||
</property>
|
</property>
|
||||||
|
@ -48,6 +51,11 @@
|
||||||
<string>RSS streams:</string>
|
<string>RSS streams:</string>
|
||||||
</property>
|
</property>
|
||||||
</column>
|
</column>
|
||||||
|
<column>
|
||||||
|
<property name="text" >
|
||||||
|
<string>2</string>
|
||||||
|
</property>
|
||||||
|
</column>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
|
|
Loading…
Reference in a new issue