Removed autoselection of radio buttons in wizard

This commit is contained in:
Pax1601
2024-01-29 17:52:33 +01:00
parent 7ee3fb883b
commit be625fdca9
5 changed files with 13 additions and 6 deletions

View File

@@ -42,10 +42,8 @@ class DCSInstance {
/* Read all the folders in Saved Games */
const searchpath = result[shellFoldersKey]['values'][saveGamesKey]['value'];
var folders = fs.readdirSync(searchpath).map((folder) => {return path.join(searchpath, folder);});
console.log(folders);
var instances = [];
folders = folders.concat(getManager().options.additionalDCSInstances);
console.log(folders);
/* A DCS Instance is created if either the appsettings.lua or serversettings.lua file is detected */
for (let i = 0; i < folders.length; i++) {