mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-15 01:33:07 -07:00
Move RSS settings to a separate dialog
This commit is contained in:
parent
f8134b1a62
commit
54131001b0
14 changed files with 326 additions and 219 deletions
|
@ -43,6 +43,7 @@
|
|||
#include "bittorrent.h"
|
||||
#include "cookiesdlg.h"
|
||||
#include "preferences.h"
|
||||
#include "rsssettings.h"
|
||||
|
||||
enum NewsCols { NEWS_ICON, NEWS_TITLE_COL, NEWS_URL_COL, NEWS_ID };
|
||||
|
||||
|
@ -640,3 +641,9 @@ RSSImp::~RSSImp(){
|
|||
qDebug("RSSImp deleted");
|
||||
}
|
||||
|
||||
|
||||
void RSSImp::on_settingsButton_clicked() {
|
||||
RssSettings rssSettingsDlg(this);
|
||||
if(rssSettingsDlg.exec())
|
||||
updateRefreshInterval(Preferences::getRefreshInterval());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue