diff --git a/Netch/Forms/MainForm.cs b/Netch/Forms/MainForm.cs index 63ce3a8f..6d51f661 100644 --- a/Netch/Forms/MainForm.cs +++ b/Netch/Forms/MainForm.cs @@ -1174,6 +1174,8 @@ namespace Netch.Forms } public void BandwidthState(bool state) { + if (InvokeRequired) + BeginInvoke(new Action(BandwidthState), state); UsedBandwidthLabel.Visible /*= UploadSpeedLabel.Visible*/ = DownloadSpeedLabel.Visible = state; }