create config dir instead of complaining it doesn't exist

这个提交包含在:
Albert S. 2019-08-24 09:41:07 +02:00
父节点 6c67c11481
当前提交 1284519280
共有 1 个文件被更改,包括 5 次插入2 次删除

查看文件

@ -44,8 +44,11 @@ int main(int argc, char *argv[])
QDir dir;
if(!dir.exists(configDirectoryPath))
{
QMessageBox::warning(nullptr, "Directory not found", configDirectoryPath + " was not found!");
return 1;
if(!dir.mkdir(configDirectoryPath))
{
QMessageBox::warning(nullptr, "Failed to create dir", configDirectoryPath + " was not found and could not be created!");
return 1;
}
}
QSettings settings(configDirectoryPath + "qsrun.config", QSettings::NativeFormat);