1. Added confirmation message to stop option in the shutdown window.

2. Added back the option to redirect the steamcmd output to the progress window.
This commit is contained in:
Brett Hewitson 2022-02-17 12:03:08 +10:00
parent 41933e9aa1
commit 2af1e772de
10 changed files with 96 additions and 31 deletions

View file

@ -155,6 +155,11 @@ namespace ServerManagerTool
if (ShutdownStarted)
return;
var result = MessageBox.Show(_globalizer.GetResourceString("ServerSettings_StartServer_StartingLabel"), _globalizer.GetResourceString("ServerSettings_StartServer_StartingTitle"), MessageBoxButton.YesNo, MessageBoxImage.Warning);
if (result == MessageBoxResult.No)
return;
try
{
ShutdownType = 2;