SunsetHigh.CursorArrow.updateCursor C# (CSharp) Method

updateCursor() public method

public updateCursor ( ) : void
return void
        public void updateCursor()
        {
            if (this.panel is IListPanel)
            {
                if (this.targetEntry != ((IListPanel)panel).getCurrentEntry())
                {
                    this.targetEntry = ((IListPanel)panel).getCurrentEntry();
                    moveToTargetEntry(ARROW_SCROLL_TIME);
                }
            }
        }