From 120f9a4e7bd107e53b00077813ef60ffc2373312 Mon Sep 17 00:00:00 2001 From: Aloshi Date: Mon, 23 Dec 2013 18:31:37 -0600 Subject: [PATCH] Fix accidentally making the grid view the default (woops) --- src/views/ViewController.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/ViewController.cpp b/src/views/ViewController.cpp index 20d4814f9..dc737fb06 100644 --- a/src/views/ViewController.cpp +++ b/src/views/ViewController.cpp @@ -145,7 +145,8 @@ std::shared_ptr ViewController::getGameListView(SystemData* syste else view = std::shared_ptr(new BasicGameListView(mWindow, system->getRootFolder())); - view = std::shared_ptr(new GridGameListView(mWindow, system->getRootFolder())); + // uncomment for experimental "image grid" view + //view = std::shared_ptr(new GridGameListView(mWindow, system->getRootFolder())); view->setTheme(system->getTheme()); }else{