Changed: Try to load config file everytime, see #279

This commit is contained in:
kervala 2016-08-14 13:28:50 +02:00
parent 43e8593735
commit 372d06c342

View file

@ -49,7 +49,12 @@ CConfigFile::~CConfigFile()
bool CConfigFile::load()
{
// load default values
return load(m_defaultConfigPath) || load(m_configPath);
if (!load(m_defaultConfigPath)) return false;
// ignore return value, since we'll always have valid values
load(m_configPath);
return true;
}
bool CConfigFile::load(const QString &filename)