diff --git a/Netch/Forms/MainForm.cs b/Netch/Forms/MainForm.cs index 8a2c691d..7f9893c0 100644 --- a/Netch/Forms/MainForm.cs +++ b/Netch/Forms/MainForm.cs @@ -919,6 +919,7 @@ namespace Netch.Forms } else { + ControlButton.Enabled = false; ControlButton.Text = "..."; StatusLabel.Text = $"{Utils.i18N.Translate("Status")}{Utils.i18N.Translate(": ")}{Utils.i18N.Translate("Stopping")}"; @@ -946,6 +947,9 @@ namespace Netch.Forms ControlButton.Enabled = true; ProfileGroupBox.Enabled = true; + updateACLWithProxyToolStripMenuItem.Enabled = true; + UpdateServersFromSubscribeLinksToolStripMenuItem.Enabled = true; + ControlButton.Text = Utils.i18N.Translate("Start"); StatusLabel.Text = $"{Utils.i18N.Translate("Status")}{Utils.i18N.Translate(": ")}{Utils.i18N.Translate("Stopped")}"; State = Models.State.Stopped;