OpenTween.TweenMain.GoAnchor C# (CSharp) Method

GoAnchor() private method

private GoAnchor ( ) : void
return void
        private void GoAnchor()
        {
            if (_anchorPost == null) return;
            int idx = _statuses.Tabs[_curTab.Text].IndexOf(_anchorPost.StatusId);
            if (idx == -1) return;

            SelectListItem(_curList, idx);
            _curList.EnsureVisible(idx);
        }
TweenMain