Tastudio - speed up selection by reducing unnecessary refresh calls

This commit is contained in:
adelikat 2014-10-20 00:11:07 +00:00
parent 4c1b31e293
commit 590766d147
1 changed files with 2 additions and 1 deletions

View File

@ -365,8 +365,9 @@ namespace BizHawk.Client.EmuHawk
for (var i = startVal; i < endVal; i++)
{
TasView.SelectRow(i, true);
TasView.Refresh();
}
TasView.Refresh();
}
}
else if (TasView.IsPaintDown && e.NewCell.RowIndex.HasValue && !string.IsNullOrEmpty(_startBoolDrawColumn))