UnityEditor.AssetStoreWindow.SetFocus C# (CSharp) Method

SetFocus() private method

private SetFocus ( bool value ) : void
value bool
return void
        private void SetFocus(bool value)
        {
            if (!this.m_SyncingFocus)
            {
                this.m_SyncingFocus = true;
                if (this.webView != null)
                {
                    if (value)
                    {
                        this.webView.SetHostView(base.m_Parent);
                        this.webView.Show();
                        this.m_RepeatedShow = 5;
                    }
                    this.webView.SetFocus(value);
                }
                this.m_SyncingFocus = false;
            }
        }