mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
Fix accidentally making the grid view the default (woops)
This commit is contained in:
parent
4df8fc9af0
commit
120f9a4e7b
|
@ -145,7 +145,8 @@ std::shared_ptr<IGameListView> ViewController::getGameListView(SystemData* syste
|
|||
else
|
||||
view = std::shared_ptr<IGameListView>(new BasicGameListView(mWindow, system->getRootFolder()));
|
||||
|
||||
view = std::shared_ptr<IGameListView>(new GridGameListView(mWindow, system->getRootFolder()));
|
||||
// uncomment for experimental "image grid" view
|
||||
//view = std::shared_ptr<IGameListView>(new GridGameListView(mWindow, system->getRootFolder()));
|
||||
|
||||
view->setTheme(system->getTheme());
|
||||
}else{
|
||||
|
|
Loading…
Reference in a new issue