Updated Settings to cleanup logic plus add a note for hard coded paths.

This commit is contained in:
Maxim Stewart 2017-06-18 06:14:01 -05:00
parent 33fafb29a8
commit c6d82f5f55
2 changed files with 556 additions and 548 deletions

File diff suppressed because it is too large Load Diff

View File

@ -37,11 +37,7 @@ void SettingsManager::readFromFile()
for (auto& it : lines)
{
if (it.startsWith("<qkList>"))
{
m_listOfDirs = QString(it.right(it.size() - it.indexOf('>') - 1)).split(";");
}
else if (it.startsWith("<bgOn>"))
if (it.startsWith("<bgOn>"))
{
QList<QByteArray> values = it.right(it.size() - it.indexOf('>') - 1).split(';');
@ -90,6 +86,10 @@ void SettingsManager::readFromFile()
{
m_ambient = it.right(it.size() - it.indexOf('>') - 1).toFloat();
}
else if (it.startsWith("<qkList>"))
{
m_listOfDirs = QString(it.right(it.size() - it.indexOf('>') - 1)).split(";");
}
}
m_file.close();