From 1ed4e021560290ea152d0e3a3c51a721281ad37d Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Mon, 10 Feb 2014 15:51:21 +0100 Subject: [PATCH] Supress warning when auto-update is delayed. --- src/gui/feedsview.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/gui/feedsview.cpp b/src/gui/feedsview.cpp index 6e6983963..dc096c229 100644 --- a/src/gui/feedsview.cpp +++ b/src/gui/feedsview.cpp @@ -144,11 +144,9 @@ void FeedsView::updateSelectedFeeds() { } void FeedsView::executeNextAutoUpdate() { - if (!SystemFactory::instance()->applicationCloseLock()->tryLock() && - SystemTrayIcon::isSystemTrayActivated()) { - SystemTrayIcon::instance()->showMessage(tr("Cannot update scheduled items"), - tr("You cannot update scheduled items because another feed update is ongoing."), - QSystemTrayIcon::Warning); + if (!SystemFactory::instance()->applicationCloseLock()->tryLock()) { + qDebug("Delaying scheduled feed auto-updates for one minute " + "due to another running update."); // Cannot update, quit. return;