1.1.3 -> 1.1.4 第72次更新

This commit is contained in:
Space Time 2024-12-18 20:10:21 +08:00
parent 419ddd8fdb
commit 49fb4cf655

View File

@ -1,4 +1,5 @@
using System;
using System.Diagnostics;
using System.Windows;
using Sheas_Core;
@ -8,7 +9,12 @@ internal class BrowserProc : Proc
{
private readonly bool ShutDownAppOnProcessExit;
internal BrowserProc(string browserPath, bool shutDownAppOnProcessExit) : base(browserPath) => ShutDownAppOnProcessExit = shutDownAppOnProcessExit;
internal BrowserProc(string browserPath, bool shutDownAppOnProcessExit) : base(browserPath)
{
ShutDownAppOnProcessExit = shutDownAppOnProcessExit;
Process_Exited(null!, null!);
}
public override void Process_Exited(object sender, EventArgs e)
{