From 027a08c92eca7f7d534ab7145eef2c21c1631468 Mon Sep 17 00:00:00 2001 From: Gabriele Date: Sat, 4 Apr 2015 19:12:34 +0200 Subject: [PATCH] Update matching RSS articles while editing rules Save the rules as soon as they are edited so that the matching articles tree is immediately updated. Closes #2829. --- src/gui/rss/automatedrssdownloader.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/rss/automatedrssdownloader.cpp b/src/gui/rss/automatedrssdownloader.cpp index 910a04a13..df4b1167b 100644 --- a/src/gui/rss/automatedrssdownloader.cpp +++ b/src/gui/rss/automatedrssdownloader.cpp @@ -523,6 +523,7 @@ void AutomatedRssDownloader::updateMatchingArticles() return; const QHash all_feeds = manager->getAllFeedsAsHash(); + saveEditedRule(); foreach (const QListWidgetItem *rule_item, ui->listRules->selectedItems()) { RssDownloadRulePtr rule = m_editableRuleList->getRule(rule_item->text()); if (!rule) continue;