mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-26 22:44:36 +00:00
Save rule on enable/disable even if not selected. Closes #6163.
--HG-- branch : magao-dev
This commit is contained in:
parent
2244b7cb66
commit
601649f49a
@ -92,6 +92,8 @@ AutomatedRssDownloader::AutomatedRssDownloader(const QWeakPointer<Rss::Manager>
|
||||
Q_ASSERT(ok);
|
||||
ok = connect(ui->listRules, SIGNAL(itemSelectionChanged()), SLOT(updateFeedList()));
|
||||
Q_ASSERT(ok);
|
||||
ok = connect(ui->listRules, SIGNAL(itemChanged(QListWidgetItem *)), SLOT(handleRuleCheckStateChange(QListWidgetItem *)));
|
||||
Q_ASSERT(ok);
|
||||
ok = connect(ui->listFeeds, SIGNAL(itemChanged(QListWidgetItem *)), SLOT(handleFeedCheckStateChange(QListWidgetItem *)));
|
||||
Q_ASSERT(ok);
|
||||
// Update matching articles when necessary
|
||||
@ -492,6 +494,18 @@ void AutomatedRssDownloader::renameSelectedRule()
|
||||
}
|
||||
}
|
||||
|
||||
void AutomatedRssDownloader::handleRuleCheckStateChange(QListWidgetItem *rule_item)
|
||||
{
|
||||
if (ui->ruleDefBox->isEnabled())
|
||||
// Make sure the current rule is saved
|
||||
saveEditedRule();
|
||||
|
||||
// Make sure we save the rule that was enabled or disabled - it might not be the current selection.
|
||||
m_editedRule = rule_item;
|
||||
saveEditedRule();
|
||||
m_editedRule = 0;
|
||||
}
|
||||
|
||||
void AutomatedRssDownloader::handleFeedCheckStateChange(QListWidgetItem *feed_item)
|
||||
{
|
||||
if (ui->ruleDefBox->isEnabled())
|
||||
|
@ -67,6 +67,7 @@ protected slots:
|
||||
void loadSettings();
|
||||
void saveSettings();
|
||||
void loadRulesList();
|
||||
void handleRuleCheckStateChange(QListWidgetItem *rule_item);
|
||||
void handleFeedCheckStateChange(QListWidgetItem *feed_item);
|
||||
void updateRuleDefinitionBox();
|
||||
void clearRuleDefinitionBox();
|
||||
|
Loading…
x
Reference in New Issue
Block a user