diff --git a/Netch/Forms/MainForm.cs b/Netch/Forms/MainForm.cs index 4746be47..98e2c37c 100644 --- a/Netch/Forms/MainForm.cs +++ b/Netch/Forms/MainForm.cs @@ -1178,7 +1178,13 @@ namespace Netch.Forms public void BandwidthState(bool state) { if (InvokeRequired) + { BeginInvoke(new Action(BandwidthState), state); + return; + } + + if (IsWaiting()) + return; UsedBandwidthLabel.Visible /*= UploadSpeedLabel.Visible*/ = DownloadSpeedLabel.Visible = state; }