From 7ca5c45eca3f6d4fd573ad62e3305789063b03cf Mon Sep 17 00:00:00 2001 From: Flavio Tordini Date: Tue, 4 Aug 2015 21:18:22 +0200 Subject: [PATCH] Restore original aggregator behaviour (always on) --- src/channelaggregator.cpp | 2 +- src/channelview.cpp | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/channelaggregator.cpp b/src/channelaggregator.cpp index a7eb055..b660c38 100644 --- a/src/channelaggregator.cpp +++ b/src/channelaggregator.cpp @@ -160,7 +160,7 @@ void ChannelAggregator::videosLoaded(const QList &videos) { foreach (Video* video, videos) video->deleteLater(); } - QTimer::singleShot(1000, this, SLOT(processNextChannel())); + QTimer::singleShot(0, this, SLOT(processNextChannel())); } void ChannelAggregator::updateUnwatchedCount() { diff --git a/src/channelview.cpp b/src/channelview.cpp index 578e7fe..414846a 100644 --- a/src/channelview.cpp +++ b/src/channelview.cpp @@ -178,7 +178,6 @@ void ChannelView::appear() { } void ChannelView::disappear() { - ChannelAggregator::instance()->stop(); foreach (QAction* action, statusActions) MainWindow::instance()->showActionInStatusBar(action, false); } -- 2.39.5