From: Flavio Tordini Date: Tue, 4 Aug 2015 19:18:22 +0000 (+0200) Subject: Restore original aggregator behaviour (always on) X-Git-Tag: 2.5~40 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7ca5c45eca3f6d4fd573ad62e3305789063b03cf;p=minitube Restore original aggregator behaviour (always on) --- 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); }