Update ProgramRoot.cs

remove exception test
This commit is contained in:
BlueBlock
2023-03-21 16:49:59 -04:00
parent fa7967190d
commit 7f9dcb11f0

View File

@@ -46,7 +46,6 @@ namespace mRemoteNG.App
_frmSplashScreen.Top = viewport.Top + (targetScreen.Bounds.Size.Height / 2) - (_frmSplashScreen.Height / 2); _frmSplashScreen.Top = viewport.Top + (targetScreen.Bounds.Size.Height / 2) - (_frmSplashScreen.Height / 2);
_frmSplashScreen.ShowInTaskbar = false; _frmSplashScreen.ShowInTaskbar = false;
_frmSplashScreen.Show(); _frmSplashScreen.Show();
throw new Exception();
System.Windows.Forms.Application.Run(FrmMain.Default); System.Windows.Forms.Application.Run(FrmMain.Default);
} }