1
0
Fork 0

Fix saved config naming

This commit is contained in:
James Turner 2018-06-28 15:35:50 +01:00
parent 7d7dc725a8
commit 7f554bd0fd

View file

@ -769,5 +769,9 @@ void LauncherController::saveConfigAs()
{}, "*.fglaunch");
if (file.isEmpty())
return;
if (!file.endsWith(".fglaunch")) {
file += ".fglaunch";
}
m_config->saveConfigToFile(file);
}