Correct tab size inconsistency

This commit is contained in:
Zinfidel 2019-11-27 21:46:49 -08:00
parent b3875e21ae
commit ac2c42ef74
1 changed files with 3 additions and 3 deletions

View File

@ -232,9 +232,9 @@ namespace BizHawk.Client.Common
public void OrderWatches(string column, bool reverse)
{
var separatorIndices = _watchList.Select((w, i) => new { watch = w, index = i })
.Where(w => w.watch.IsSeparator)
.Select(w => w.index)
.ToList();
.Where(w => w.watch.IsSeparator)
.Select(w => w.index)
.ToList();
separatorIndices.Add(_watchList.Count);