GitUI.RevisionGrid.ContinueBisect C# (CSharp) Method

ContinueBisect() private method

private ContinueBisect ( GitBisectOption bisectOption ) : void
bisectOption GitBisectOption
return void
        private void ContinueBisect(GitBisectOption bisectOption)
        {
            if (Revisions.RowCount <= LastRowIndex || LastRowIndex < 0)
                return;

            FormProcess.ShowDialog(this, Module, GitCommandHelpers.ContinueBisectCmd(bisectOption, GetRevision(LastRowIndex).Guid), false);
            RefreshRevisions();
        }
RevisionGrid