From b298cf2309ea8b3b94fe58b720bf1bff68dd8c98 Mon Sep 17 00:00:00 2001 From: Flavio Date: Fri, 3 Jan 2014 23:34:04 +0100 Subject: [PATCH] Removed non-working standard feeds --- src/standardfeedsview.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/standardfeedsview.cpp b/src/standardfeedsview.cpp index 4bfeee6..7942d0d 100644 --- a/src/standardfeedsview.cpp +++ b/src/standardfeedsview.cpp @@ -95,19 +95,19 @@ void StandardFeedsView::addVideoSourceWidget(VideoSource *videoSource) { connect(w, SIGNAL(activated(VideoSource*)), SIGNAL(activated(VideoSource*))); int i = layout->count(); - static const int cols = 5; + static const int cols = 4; layout->addWidget(w, i / cols, i % cols); } QList StandardFeedsView::getMainFeeds() { QList feeds; - feeds << buildStardardFeed("most_popular", tr("Most Popular")) + feeds << buildStardardFeed("most_popular", tr("Most Popular")); // << buildStardardFeed("recently_featured", tr("Featured")) - << buildStardardFeed("most_shared", tr("Most Shared")) - << buildStardardFeed("most_discussed", tr("Most Discussed")) - << buildStardardFeed("top_rated", tr("Top Rated")) - << buildStardardFeed("most_popular", tr("All Time Popular"), "all_time"); + // << buildStardardFeed("most_shared", tr("Most Shared")) + // << buildStardardFeed("most_discussed", tr("Most Discussed")) + // << buildStardardFeed("top_rated", tr("Top Rated")) + // << buildStardardFeed("most_popular", tr("All Time Popular"), "all_time"); return feeds; } -- 2.39.2