Mono.Terminal.Entry.Adjust C# (CSharp) Method

Adjust() private method

private Adjust ( ) : void
return void
        void Adjust()
        {
            if (point < first)
                first = point;
            else if (first + point >= w)
                first = point - (w / 3);
            Redraw ();
            Curses.refresh ();
        }