SidebarGenerator adding GTA V Folder from Environment value

This commit is contained in:
Rafael 2016-04-10 22:35:41 +02:00
parent b1155cb2a7
commit de863c922a
1 changed files with 8 additions and 5 deletions

View File

@ -18,6 +18,7 @@
#include "SidebarGenerator.h"
#include "StandardPaths.h"
#include "AppEnv.h"
#include <QList>
#include <QUrl>
#include <QDir>
@ -40,11 +41,13 @@ QList<QUrl> SidebarGenerator::generateSidebarUrls(QList<QUrl> sidebarUrls)
dir.setPath(StandardPaths::documentsLocation());
if (dir.exists())
{
sidebarUrls.append(QUrl::fromLocalFile(dir.absolutePath()));
if (dir.cd("Rockstar Games/GTA V"))
{
sidebarUrls << QUrl::fromLocalFile(dir.absolutePath());
}
}
bool gameFolderExists;
QString gameFolder = AppEnv::getGameFolder(&gameFolderExists);
if (gameFolderExists)
{
QUrl::fromLocalFile(gameFolder);
}
dir.setPath(StandardPaths::desktopLocation());