When choosing a difficulty or engine in the test toolbar button the engine will not be launched immediately. This can be reverted in the preferences. Resolves #626

This commit is contained in:
biwa 2021-12-11 12:43:33 +01:00
parent a75249b315
commit 9f85f70deb
5 changed files with 2395 additions and 2351 deletions

View file

@ -96,6 +96,7 @@ namespace CodeImp.DoomBuilder.Windows
showtexturesizes.Checked = General.Settings.ShowTextureSizes;
texturesizesbelow.Checked = General.Settings.TextureSizesBelow;
cbShowFPS.Checked = General.Settings.ShowFPS;
autolaunchontest.Checked = General.Settings.AutoLaunchOnTest;
//mxd
locatetexturegroup.Checked = General.Settings.LocateTextureGroup;
@ -333,6 +334,7 @@ namespace CodeImp.DoomBuilder.Windows
General.Settings.MaxRecentFiles = recentFiles.Value; //mxd
General.Settings.ScreenshotsPath = screenshotsfolderpath.Text.Trim(); //mxd
General.Settings.ShowFPS = cbShowFPS.Checked;
General.Settings.AutoLaunchOnTest = autolaunchontest.Checked;
// Script settings
General.Settings.ScriptFontBold = scriptfontbold.Checked;