private void SetDisplay(string html) { Debug.Assert(!html.Contains("<?")); // prevents clicking sound when browser navigates DetailsBrowser.SetDocNoClick(html); }
private void SetDisplay(string html) { Debug.Assert(!html.Contains("<?")); //if (!DisplayActivated) // return; // watch transfers runs per second, dont update unless we need to if (html.CompareTo(DetailsBrowser.DocumentText) == 0) { return; } // prevents clicking sound when browser navigates DetailsBrowser.SetDocNoClick(html); }