mirror of
https://github.com/SlothDpal/Relaunch-Process.git
synced 2026-02-22 17:27:38 +03:00
queue fixes
This commit is contained in:
@@ -9,15 +9,19 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
using Process_Auto_Relaunch;
|
||||
using RelaunchProcess.Properties;
|
||||
|
||||
namespace RelaunchProcess
|
||||
{
|
||||
public partial class WebhookSettings : Form
|
||||
{
|
||||
public WebhookSettings()
|
||||
private Form1 parent;
|
||||
|
||||
public WebhookSettings(Form1 _parent)
|
||||
{
|
||||
InitializeComponent();
|
||||
parent = _parent;
|
||||
RestoreSettings();
|
||||
}
|
||||
|
||||
@@ -64,6 +68,10 @@ namespace RelaunchProcess
|
||||
{
|
||||
chbxDiscordEnabled.Checked = false;
|
||||
}
|
||||
if (!chbxDiscordEnabled.Checked)
|
||||
{
|
||||
parent.dwhHook.CancelProcessing();
|
||||
}
|
||||
SaveSettings();
|
||||
DialogResult = DialogResult.OK;
|
||||
Close();
|
||||
|
||||
Reference in New Issue
Block a user