mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-02-16 20: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
|
else
|
||||||
view = std::shared_ptr<IGameListView>(new BasicGameListView(mWindow, system->getRootFolder()));
|
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());
|
view->setTheme(system->getTheme());
|
||||||
}else{
|
}else{
|
||||||
|
|
Loading…
Reference in a new issue